Tim Tisdall

Results 59 comments of Tim Tisdall

In order to use your own plugins, you need to manually load them in the template after the `{{ form.media }}` tag with a `` tag.

uploaded files go into MEDIA_ROOT and MEDIA_URL is used to create the url... Have you defined those? You may want to use the browser's developer console to view what JSON...

@jkeyes - there's also `tag_users` mentioned in `docs/index.rst` that needs this same fix applied to

This is an old issue, but for anyone else finding this... The issue is completely with the latest jQuery UI setting the `touch-action` on the CSS to prevent all actions...

@jonathanphz - no side effects I've noticed. The older versions of jQuery UI didn't change those CSS attributes so the given CSS is just undoing the changes to CSS the...

The "Note" seems to imply encoding the "usual suspects" of HTML entities: ![image](https://user-images.githubusercontent.com/4029388/55625243-29c45180-5776-11e9-97f6-0cdd125941eb.png) The reasoning behind it is specifically to avoid having `` and/or `

Excellent point. Yeah, I was wondering about that too... Here's some [documentation on the JSON-LD API](https://www.w3.org/TR/json-ld-api/#the-application-programming-interface). The gist seems to be an API that "restructuring data according to the defined...

@gk2go - The issue is about unescaping escaped HTML entities. The issue you're having is about malformed JSON because the person didn't quote the `"` as either `\"` or `"`....

... it looks like [there's more instances in the docs to `jconfirm.defaults`](https://craftpip.github.io/jquery-confirm/#globaldefaults) that should be changed to `jconfirm.pluginDefaults`.

Well, for anyone else looking at this... I currently work around the problem by having a hidden field to record the timezone offset and then populate that with javascript. You...