The images aren't viewable, it's hard to help without an idea of what you are trying to accomplish. Maybe you could look into the source of other plugins for help.
Sounds like problems with the minifier, try exporting with the option unticked
A C2 plugin that uses the JSZip library. Manage zip archives in the browser.
Updated : 2015-5-17
[attachment=0:3uj6a95n][/attachment:3uj6a95n]
Feedback is always welcome.
Forgot to tag Ashley
I have this situation where I need to override the mime type of a request where
adding
request.overrideMimeType("text/plain; charset=x-user-defined");[/code:1cyph9hy] to a modified version of the ajax plugin works fine for me. Could I request an action to do this so I don't need to maintain a serpate plugin
Resetting layers may be useful as well, ++
DuckfaceNinja maybe look at firebase, it seems someone made a plugin for it as well.
Your sql logic is meant to be server side to prevent security breaches and ppl fuxing with your database , don't throw money at anyone for a feature like this, you'd be putting you and your users at risk.
What I posted is =what the repl returns if you were to type it into your browser console ...
Use bracket notation to define/access the key name 'myvar-toto'
window['myvar-toto'] = 'something';
If the variable isn't meant to be global then you wouldn't attach it to the window object and may choose another
var o = {};
o['myvar-toto'] = 'something';
This should be common knowledge if your planning a project with JS.
window['something-dash'] = "something"
"something"
console.log(window['something-dash'])
obj = {'with-a-dash':1}
{ 'with-a-dash': 1 }
obj['with-a-dash']
1
Develop games in your browser. Powerful, performant & highly capable.
Your array loads by swapping the size values. [4,2,1]
Open the debugger and inspect your arrays or you can dump Array.asJSON to text object
{"c2array":true,"size":[4,2,1],"data":[["right",0],["backward",90],["left",180],["forward",-90]]}
Member since 28 Apr, 2013