mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:38:02 +02:00
doh - return with a newline (and no semicolon) does not continue. Don't
need extra handler in marketplace any more.
This commit is contained in:
parent
4cf5b51124
commit
ad676b14a1
2 changed files with 1 additions and 5 deletions
|
@ -42,8 +42,7 @@ function AppUi(properties) {
|
||||||
that.additionalAppScreens = [];
|
that.additionalAppScreens = [];
|
||||||
that.checkIsOpen = function checkIsOpen(type, tabletUrl) { // Are we active? Value used to set isOpen.
|
that.checkIsOpen = function checkIsOpen(type, tabletUrl) { // Are we active? Value used to set isOpen.
|
||||||
// Actual url may have prefix or suffix.
|
// Actual url may have prefix or suffix.
|
||||||
return
|
return that.currentVisibleUrl &&
|
||||||
that.currentVisibleUrl &&
|
|
||||||
((that.home.indexOf(that.currentVisibleUrl) > -1) ||
|
((that.home.indexOf(that.currentVisibleUrl) > -1) ||
|
||||||
(that.additionalAppScreens.indexOf(that.currentVisibleUrl) > -1));
|
(that.additionalAppScreens.indexOf(that.currentVisibleUrl) > -1));
|
||||||
};
|
};
|
||||||
|
|
|
@ -1016,9 +1016,6 @@ var onQmlMessageReceived = function onQmlMessageReceived(message) {
|
||||||
SEND_ASSET_PARTICLE_TIMER_UPDATE);
|
SEND_ASSET_PARTICLE_TIMER_UPDATE);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'goToMarketplaceMainPage':
|
|
||||||
openMarketplace();
|
|
||||||
break;
|
|
||||||
case 'http.request':
|
case 'http.request':
|
||||||
// Handled elsewhere, don't log.
|
// Handled elsewhere, don't log.
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue