mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Merge pull request #451 from rashidkpc/master
added tip directive for defining question mark tooltips
This commit is contained in:
commit
cd8009eccd
@ -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) {
|
.directive('addPanel', function($compile) {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
|
Loading…
Reference in New Issue
Block a user