Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. italic.directive("tag", ['$timeout', function($timeout){
  2. return{
  3. scope: {
  4. tagWidths: '=tagWidths'
  5. },
  6. link: function(scope, element, attrs){
  7. $timeout(function () {
  8. scope.tagWidths.push(element[0].offsetWidth);
  9. });
  10. }
  11. }
  12. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement