toggle toggle toggle
This commit is contained in:
parent
dd6d015fc0
commit
7890183e01
4 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,7 @@ pandora.ui.browser = function() {
|
||||||
toggle: function(data) {
|
toggle: function(data) {
|
||||||
data.collapsed && pandora.$ui.list.gainFocus();
|
data.collapsed && pandora.$ui.list.gainFocus();
|
||||||
pandora.UI.set({showGroups: !data.collapsed});
|
pandora.UI.set({showGroups: !data.collapsed});
|
||||||
|
pandora.$ui.mainMenu.getItem('viewMenu_togglegroups').toggleTitle();
|
||||||
if (pandora.user.ui.listView == 'map') {
|
if (pandora.user.ui.listView == 'map') {
|
||||||
pandora.$ui.map.resizeMap();
|
pandora.$ui.map.resizeMap();
|
||||||
} else if (pandora.user.ui.listView == 'calendar') {
|
} else if (pandora.user.ui.listView == 'calendar') {
|
||||||
|
|
|
@ -9,6 +9,7 @@ pandora.ui.info = function() {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
toggle: function(data) {
|
toggle: function(data) {
|
||||||
pandora.UI.set({showInfo: !data.collapsed});
|
pandora.UI.set({showInfo: !data.collapsed});
|
||||||
|
pandora.$ui.mainMenu.getItem('viewMenu_toggleinfo').toggleTitle();
|
||||||
pandora.resizeFolders();
|
pandora.resizeFolders();
|
||||||
},
|
},
|
||||||
pandora_find: function() {
|
pandora_find: function() {
|
||||||
|
|
|
@ -45,6 +45,7 @@ pandora.ui.leftPanel = function() {
|
||||||
},
|
},
|
||||||
toggle: function(data) {
|
toggle: function(data) {
|
||||||
pandora.UI.set({showSidebar: !data.collapsed});
|
pandora.UI.set({showSidebar: !data.collapsed});
|
||||||
|
pandora.$ui.mainMenu.getItem('viewMenu_togglelists').toggleTitle();
|
||||||
if (data.collapsed) {
|
if (data.collapsed) {
|
||||||
Ox.forEach(pandora.$ui.folderList, function($list) {
|
Ox.forEach(pandora.$ui.folderList, function($list) {
|
||||||
$list.loseFocus();
|
$list.loseFocus();
|
||||||
|
|
|
@ -264,10 +264,13 @@ pandora.ui.mainMenu = function() {
|
||||||
} else if (data.id == 'clearcache') {
|
} else if (data.id == 'clearcache') {
|
||||||
Ox.Request.clearCache();
|
Ox.Request.clearCache();
|
||||||
} else if (data.id == 'togglegroups') {
|
} else if (data.id == 'togglegroups') {
|
||||||
|
that.getItem('viewMenu_togglegroups').toggleTitle();
|
||||||
pandora.$ui.contentPanel.toggle(0);
|
pandora.$ui.contentPanel.toggle(0);
|
||||||
} else if (data.id == 'toggleinfo') {
|
} else if (data.id == 'toggleinfo') {
|
||||||
|
that.getItem('viewMenu_toggleinfo').toggleTitle();
|
||||||
pandora.$ui.leftPanel.toggle(2);
|
pandora.$ui.leftPanel.toggle(2);
|
||||||
} else if (data.id == 'togglelists') {
|
} else if (data.id == 'togglelists') {
|
||||||
|
that.getItem('viewMenu_togglelists').toggleTitle();
|
||||||
pandora.$ui.mainPanel.toggle(0);
|
pandora.$ui.mainPanel.toggle(0);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue