mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:22:00 +02:00
Removed unused variable and added "use strict"
This commit is contained in:
parent
32439432d5
commit
95d0900e24
1 changed files with 2 additions and 5 deletions
|
@ -1,10 +1,9 @@
|
|||
//
|
||||
// scaleMe.js
|
||||
// By: alizardguy
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
"use strict";
|
||||
|
||||
(function (){
|
||||
var jsMainFileName = "scaleMe.js";
|
||||
var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
|
||||
|
@ -49,8 +48,6 @@
|
|||
//Receive message from the HTML UI
|
||||
function onAppWebEventReceived(message) {
|
||||
if (typeof message === "string") {
|
||||
var d = new Date();
|
||||
var n = d.getTime();
|
||||
var instruction = JSON.parse(message);
|
||||
if (instruction.channel === channel) {
|
||||
if (instruction.action === "SCALE") { //<== Use this for action trigger the UI script processing. (whithout delay)
|
||||
|
|
Loading…
Reference in a new issue