Page 1 of 1

I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 12:39 am
by Jeff6301705

after following the webinar "building an app with user registration." I get this message.

Image

Any ideas on what I should do?


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 5:42 am
by Illya Stepanov

Hello Jeff,

Does it affect the functionality of your app?
Can you update the screenshot -- it doesn't show the line with error?


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 6:48 am
by Jeff6301705

Yes it does effect the app, when I try to retrieve the data, after logging in, it just looks like it's working, but goes nowhere.
Image

I believe this is what you were wanting to see.


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 8:10 am
by Kateryna Grynko

Hi Jeff,

Please share the application with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a and tell us how to reproduce the error.


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 5:51 pm
by Maryna Brodina

Hello! On My_Bucket_List page in creat_mylis service in mapping to request parameter acl there is an incorrect code:
prevar acl = <;
acl{value}= { "read": true,"write": true };
return acl;/pre
Please try the following one instead
prevar acl = {};
acl[value]= { "read": true,"write": true };
return acl;/pre


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Mon Oct 28, 2013 9:52 pm
by Jeff6301705

I changed the incorrect script, and this is what I got in return

Image

It looks like the same thing to me.


I'm getting an unexpected token error jquery-1.8.2.js:7975

Posted: Tue Oct 29, 2013 2:30 am
by Igor

Hello,

There is syntax error on My_Bucket_List page in creat_mylis service in mapping to request parameter acl. You should use
pre
var acl = {};
/pre

instead of

pre
ar acl = {};
/pre