I am getting an unexpected token { in the following line:
var that = this, tag_array = "img,object,embed,audio,video,iframe".split(','),
video_array = ['EMBED', 'OBJECT', 'VIDEO'],
is_ooyala = false, platform = {{ platform }};
seems like every thing is in balance. Any idea?
Unless this is dJango (in which cas you need to surround the
{{platform}}in quotes(platform = "{{ platform}}";), you’re setting a variable equal to iteslf inside a double object litteral…As everyone is saying this:
is your issue. for testing switch to:
or try:
And you can revrive the value like this:
or