Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. .directive('graph', ['$document', '$animate', function ($document, $animate) {
  2. return {
  3. restrict: 'A',
  4. link: function (scope, element, attributes) {
  5.  
  6. var newClass = {height: attributes['height']}
  7.  
  8. $animate.addClass(element, newClass);
  9.  
  10. }
  11. };
  12. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement