Arthur

Results 38 comments of Arthur

lets add local storage to cache the scripts!

@jbmonroe I recently wrote a script to use localStorage to cache JS & CSS scripts. The way it works is to store the JS/CSS content as a STRING and inject...

@getify Thank you all for the awesome work!!! Just curious when this might be released?

Successfully tested in Lucee 4.5.3 !

In Lucee 5 and prob in ACF12 you can specify ordered structs. -- Arthur On Thu, Sep 8, 2016 at 6:28 PM, Russ [email protected] wrote: > Ah, that makes sense....

I also noticed that the code is not wrapped in `` and `` tags. That is not standard and should be corrected! Here is the html that is currently being...

@Zuckjet so highlight.js is already available and is loaded before quill.js. I was able to make it work by overriding the `highlightBlot` method in syntax.js and also updating the code.ts...

@apg-dev please share the code of the blot if possible.

@doshkim do you happen to have the code for this implementation?

@bjhijmans my implementation ended up being this ``` editor.codemirror.addKeyMap({ 'Enter': codemirror => { return tribute.isActive ? false : 'CodeMirror.Pass'; }, 'Up': codemirror => { return tribute.isActive ? false : 'CodeMirror.Pass';...