10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
angular.module('syncthing.core')
|
|
.directive('popover', function () {
|
|
return {
|
|
restrict: 'A',
|
|
link: function (scope, element, attributes) {
|
|
$(element).popover();
|
|
}
|
|
};
|
|
});
|