mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 01:02:34 +02:00
Undo overwritten previous fixes to type checking.
This commit is contained in:
parent
79659ad24f
commit
1e0fc5e9f5
2 changed files with 6 additions and 6 deletions
|
@ -34,7 +34,7 @@
|
|||
|
||||
|
||||
function clicked() {
|
||||
if (Appstatus == true) {
|
||||
if (Appstatus) {
|
||||
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
|
||||
tablet.gotoHomeScreen();
|
||||
Appstatus = false;
|
||||
|
@ -67,7 +67,7 @@
|
|||
|
||||
if (eventzget.action === "installScript") {
|
||||
|
||||
if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) {
|
||||
if (lastProcessing.action === eventzget.action && lastProcessing.script === eventzget.script) {
|
||||
return;
|
||||
} else {
|
||||
ScriptDiscoveryService.loadOneScript(eventzget.script);
|
||||
|
@ -83,7 +83,7 @@
|
|||
|
||||
if (eventzget.action === "uninstallScript") {
|
||||
|
||||
if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) {
|
||||
if (lastProcessing.action === eventzget.action && lastProcessing.script === eventzget.script) {
|
||||
return;
|
||||
} else {
|
||||
ScriptDiscoveryService.stopScript(eventzget.script, false);
|
||||
|
@ -107,7 +107,7 @@
|
|||
|
||||
|
||||
function onScreenChanged(type, url) {
|
||||
if (type == "Web" && url.indexOf(APP_URL) != -1) {
|
||||
if (type === "Web" && url.indexOf(APP_URL) !== -1) {
|
||||
//Active
|
||||
//print("MORE... ACTIVE");
|
||||
Appstatus = true;
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
//update the buttons
|
||||
buttonList.forEach(function(item){
|
||||
var btn = "";
|
||||
if (message.indexOf(item.url) != -1) {
|
||||
if (message.indexOf(item.url) !== -1) {
|
||||
//Means already running
|
||||
btn = "<button class='uninstall' onclick='uninstall(" + '"' + item.url + '"' + ", " + '"' + item.id + '"' + ");'>Uninstall</button>";
|
||||
} else {
|
||||
|
@ -198,7 +198,7 @@
|
|||
|
||||
for (index = 0; index < metadata.applications.length; index++) {
|
||||
lowItem = metadata.applications[index].name.toLowerCase();
|
||||
if (lowItem.indexOf(search.toLowerCase()) != -1 && metadata.applications[index].isActive == true) {
|
||||
if (lowItem.indexOf(search.toLowerCase()) !== -1 && metadata.applications[index].isActive == true) {
|
||||
counterDir = counterDir + 1;
|
||||
if ((counterDir >= offset) && (counterDir < (offset + perpage))) {
|
||||
DisplayApp(metadata.applications[index]);
|
||||
|
|
Loading…
Reference in a new issue