mirror of https://github.com/akveo/blur-admin
parent
091ad8e226
commit
016075c229
@ -1,24 +0,0 @@
|
||||
/**
|
||||
* @author v.lugovksy
|
||||
* created on 16.12.2015
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
angular.module('BlurAdmin.theme.components')
|
||||
.directive('blurPanel', blurPanel);
|
||||
|
||||
/** @ngInject */
|
||||
function blurPanel() {
|
||||
return {
|
||||
restrict: 'E',
|
||||
transclude: true,
|
||||
scope: {
|
||||
title: '@',
|
||||
classContainer: '@'
|
||||
},
|
||||
templateUrl: 'app/theme/components/baPanel/blurPanel.html'
|
||||
};
|
||||
}
|
||||
|
||||
})();
|
@ -1,8 +0,0 @@
|
||||
<div class="panel panel-default invisible" ng-class="classContainer" zoom-in>
|
||||
<div class="panel-heading clearfix" ng-if="title">
|
||||
<h3 class="panel-title">{{ title }}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="panel-content" ng-transclude></div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in new issue