refactor(panel): blurPanel removed as a legacy code

pull/3/head
Vladimir Lugovsky 9 years ago
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…
Cancel
Save