29 lines
933 B
Python
29 lines
933 B
Python
'use strict';
|
|
app.controller('MainController', [
|
|
'$rootScope', '$location', '$window', '$timeout','$cookies',
|
|
function($rootScope, $location, $window, $timeout,$cookies) {
|
|
|
|
$rootScope.$on("handleReLogin",function(){
|
|
$timeout(function(){
|
|
$window.localStorage.removeItem("myems_admin_ui_current_user");
|
|
$location.path('/login');
|
|
},2000)
|
|
});
|
|
|
|
$rootScope.$on('handleEmitWebMessageTableChanged', function(event) {
|
|
$rootScope.$broadcast('BroadcastResetWebMessage');
|
|
});
|
|
|
|
$rootScope.$on('handleEmitWebMessageOptionChanged', function(event, args) {
|
|
if(args.load){
|
|
$rootScope.$broadcast('BroadcastResetWebMessage');
|
|
}
|
|
|
|
});
|
|
|
|
$rootScope.bufferToStr=function(buffer){
|
|
return String.fromCharCode.apply(null, new Uint8Array(buffer));
|
|
};
|
|
}
|
|
]);
|