popoverDirective.js 242 B

123456789
  1. angular.module('syncthing.core')
  2. .directive('popover', function () {
  3. return {
  4. restrict: 'A',
  5. link: function (scope, element, attributes) {
  6. $(element).popover();
  7. }
  8. };
  9. });