Cookies
Posted: Mon Aug 29, 2016 1:08 pm
I use cookies in my app. They were working fine until I upgraded to CrossUI Ver 1.4; now they don't work. I tried this code from the API documentation, which runs OK in the API documentation's demo 'run' environment, but doesn't work within my app under 1.4:
var o = xui.Cookies;
o.set('a','b',1);
alert(o.get('a'));
o.remove('a');
alert(o.get('a'));
All my cookie code does work in versions of the app that I built under 1.2.
Can you advise?
var o = xui.Cookies;
o.set('a','b',1);
alert(o.get('a'));
o.remove('a');
alert(o.get('a'));
All my cookie code does work in versions of the app that I built under 1.2.
Can you advise?