OK Folks,
the code is in the following mapping from localstorage array to db array
cant check console because app won't load, just get spinner on login scren
Check the Network tab -- you might see the failing request there.
There is JS error on "Choose" screen-"restservice11"-"favorites"-"Edit JS".
Your code:
pre
ar i, j, arr, tmpArr, obj;
/pre
should be:
pre
var i, j, arr, tmpArr, obj;
/pre
You missed one symbol.
Do you use tmpArr in some other functions? Please check your code.
Hi Alena,
No I dont use tmpArr in other functions, it has been added to mapping in "favoritesupdate" service
Hi Michael,
Could you please tell us how to reproduce this error? I can't get it.
Hi Igor
login to app, you can use "test" for name and pass,
click book button,
on selectmenu choose a town,
when collapsible appears, click the green save button,
this gives the error,
thanks Igor
"favorites"-"Edit JS"
replace:
pre
for (i = 0, j = arr.length; i < j; i++)
/pre
to
pre
for (i = 0, j = arr.length-1; i < j; i++)
/pre