mirror of https://github.com/akveo/blur-admin
25 lines
407 B
JavaScript
25 lines
407 B
JavaScript
/**
|
|
* @author v.lugovsky
|
|
* created on 07.06.2016
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.form')
|
|
.controller('OldSwitchPanelCtrl', OldSwitchPanelCtrl);
|
|
|
|
/** @ngInject */
|
|
function OldSwitchPanelCtrl() {
|
|
var vm = this;
|
|
|
|
vm.switcherValues = {
|
|
primary: true,
|
|
warning: true,
|
|
danger: true,
|
|
info: true,
|
|
success: true
|
|
};
|
|
}
|
|
|
|
})();
|