mirror of https://github.com/akveo/blur-admin
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
'use strict';
|
|
|
|
blurAdminApp.controller('mainCtrl', ['$scope', '$timeout', function ($scope, $timeout) {
|
|
$timeout(function () {
|
|
$scope.finishLoading = true;
|
|
}, 1000);
|
|
|
|
$timeout(function () {
|
|
pageLoaded = true;
|
|
}, 4000);
|
|
|
|
$scope.isMenuCollapsed = window.innerWidth <= resWidthCollapseSidebar;
|
|
}]); |