mirror of https://github.com/akveo/blur-admin
22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
/**
|
|
* @author v.lugovksy
|
|
* created on 16.12.2015
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.theme.components')
|
|
.directive('pageTop', pageTop);
|
|
|
|
/** @ngInject */
|
|
function pageTop() {
|
|
return {
|
|
restrict: 'E',
|
|
scope: {
|
|
isMenuCollapsed: '=',
|
|
},
|
|
templateUrl: 'app/theme/components/pageTop/pageTop.html'
|
|
};
|
|
}
|
|
|
|
})(); |