This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-11-18 22:57:21 +00:00
|
|
|
angular.module('syncthing.core')
|
|
|
|
|
.directive('popover', function () {
|
|
|
|
|
return {
|
|
|
|
|
restrict: 'A',
|
|
|
|
|
link: function (scope, element, attributes) {
|
|
|
|
|
$(element).popover();
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-12-25 14:26:46 +01:00
|
|
|
});
|