added tip directive for defining question mark tooltips

This commit is contained in:
Rashid Khan 2013-08-30 15:25:27 -07:00
parent 603f66eeb1
commit c0a5b0af02

View File

@ -20,6 +20,15 @@ angular.module('kibana.directives', [])
}
};
})
.directive('tip', function($compile) {
return {
restrict: 'E',
link: function(scope, elem, attrs) {
var _t = '<i class="icon-question-sign" bs-tooltip="\''+elem.text()+'\'"></i>';
elem.replaceWith($compile(angular.element(_t))(scope));
}
};
})
.directive('addPanel', function($compile) {
return {
restrict: 'A',