Rob Galbraith
Rob Galbraith
I concur. It would be awesome to get the regex u flag support for international characters, which is available in 2.10.0.
May have a quick solution for this. It's not so much to do with the loading of the ajax, and more to do with the rendering method. From looking at...
My test didn't work - it looks like browsers (or at least Firefox) do not allow insertAdjacentHTML to add script tags to the page, despite it being allowed in the...
I've got a potential solution regarding running the script tags after the whole html string has been rendered. So it's not the same as rendering nodes in sequence as you...
This is now on the branch, with a new option of "allow-scripts" for the render command, and the render-after-end, etc. commands. Example syntax: ```render: "{$STRING}" allow-scripts;``` HTML inside components probably...
Needs to work like lodash _get() and handle complex paths, like the new getVar() helper function.
On review this has come up several times in development scenarios, so worth doing.
Note to self: There is a helper function in the docs called getVar for use in JS expressions which gets a variable value based on a path. The new syntax...
Do this for attribute references too, as in https://github.com/Active-CSS/active-css/issues/304
Initial example syntax for this CSS-ified: ``` @switch ($var|expr) { @case 'Joan' { } @case $something, 'text', $somethingElse, jsExpression { @break; } @case 'Dave' { } @default { } }...