Hi,
I found 2 cases that stop loading js files in widgets without any notifications on a device (tested on E66).
They work fine under the emulator.
- Do not use “const” declaration like
Use “var” insteadCode:const XXX = 1;Code:var XXX = 1;- Do not use “long” as the name of members in an object definition like
.Code:function TObj(long){ this.long = long; }
Be careful,
Sergey

Reply With Quote

