UNPKG

landers.angular

Version:

landers.angular

17 lines 573 B
;angular.module('Landers.angular') .directive('bootstrapTooltip', [function(){ return { restrict : 'C', link : function($scope, $ele, $attrs){ (function(){ var self = arguments.callee; var title = $ele.attr('data-title'); if ( !title || title.match(/\{\{(.*)\}\}/) ) { setTimeout(self, 300); } else { $ele.tooltip(); } })(); } } }]);