Thanks, I am waiting...
Thanks, I am waiting...
Hello! We updated Tiggzi, try again.
I updated tiggzi mobile tester and re-saved project, but the problem is still exist.
What should I do?
it doesn't work! how did you test it?
There is another problem, which will be fixed in next release. But there is a workaround for you. You can export source code into Eclipse or xCode and correct 1069 line in file tiggzi.js manually. It must look like following:
codevalue = $t.persistentStorage.getItem(entry.ATTR) || '';/code
thank you, this do the trick.
however, tiggzi local storage values has a strange behavior. for example, on a first run my login/pass has "null" by default, but when I go to 2nd screen and return back, values changes to empty (for login) and "undefined" (for password). I do not change it, so it is a bug.
Hi,
LocalStorage variable "code" value is 'undefined'.
You see "code" (not a password) in your application.
Change
code'Pass: ' + localStorage.getItem('code')/codeto
code'Pass: ' + localStorage.getItem('pass')/codeand everything will work.
Hello! It's fixed now.