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:
Howard Stearns 2018-09-27 16:06:55 -07:00
parent 4cf5b51124
commit ad676b14a1
2 changed files with 1 additions and 5 deletions

View file

@ -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));
}; };

View file

@ -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;