horizon/horizon/static/framework/widgets/help-panel/help-panel.js

14 lines
305 B
JavaScript

(function () {
'use strict';
angular.module('hz.widget.help-panel', [])
.directive('helpPanel', ['horizon.framework.widgets.basePath',
function (path) {
return {
templateUrl: path + 'help-panel/help-panel.html',
transclude: true
};
}
]);
})();