fix setting /update url
This commit is contained in:
parent
b10a710a63
commit
db8a3f2689
2 changed files with 6 additions and 4 deletions
|
@ -119,8 +119,12 @@ oml.ui.appDialog = function() {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
close: function() {
|
close: function() {
|
||||||
|
if (Ox.contains(tabs.map(function(tab) {
|
||||||
|
return tab.id;
|
||||||
|
}), ui.page)) {
|
||||||
oml.UI.set({page: ''});
|
oml.UI.set({page: ''});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
that.updateElement = function(section) {
|
that.updateElement = function(section) {
|
||||||
|
|
|
@ -348,11 +348,9 @@ oml.ui.mainMenu = function() {
|
||||||
click: function(data) {
|
click: function(data) {
|
||||||
var id = data.id;
|
var id = data.id;
|
||||||
if (Ox.contains([
|
if (Ox.contains([
|
||||||
'about', 'faq', 'terms', 'development', 'contact'
|
'about', 'faq', 'terms', 'development', 'contact', 'update'
|
||||||
], id)) {
|
], id)) {
|
||||||
oml.UI.set({page: id});
|
oml.UI.set({page: id});
|
||||||
} else if (id == 'update') {
|
|
||||||
oml.$ui.updateDialog = oml.ui.updateDialog().open();
|
|
||||||
} else if (id == 'quit') {
|
} else if (id == 'quit') {
|
||||||
oml.api.quit();
|
oml.api.quit();
|
||||||
} else if (id == 'preferences') {
|
} else if (id == 'preferences') {
|
||||||
|
|
Loading…
Reference in a new issue