blur-admin/src/app/lookAndFeel/lookAndFeelPanel.directive.js

22 lines
434 B
JavaScript

/**
* @author v.lugovsky
* created on 18.11.2015
*/
(function() {
'use strict';
blurAdminApp
.directive('lookAndFeelPanel', lookAndFeelPanel);
lookAndFeelPanel.$inject = ['lookAndFeelEnum'];
function lookAndFeelPanel(lookAndFeelEnum) {
return {
templateUrl: 'app/lookAndFeel/lookAndFeelPanel.html',
link: function(scope, el) {
scope.lookAndFeels = lookAndFeelEnum;
}
};
}
})();