mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
17 lines
407 B
JavaScript
17 lines
407 B
JavaScript
app.service('MenuSelect', ['$rootScope',
|
|
function($rootScope){
|
|
return {
|
|
setSelected: function(name){
|
|
$rootScope.select_user = 'menu_unselect';
|
|
$rootScope.select_article = 'menu_unselect';
|
|
$rootScope.select_weibo = 'menu_unselect';
|
|
$rootScope.select_email = 'menu_unselect';
|
|
$rootScope.select_login = 'menu_unselect';
|
|
|
|
if(name){
|
|
$rootScope[name] = 'menu_select';
|
|
}
|
|
}
|
|
}
|
|
}]);
|