Vaughn Dickson

Results 6 comments of Vaughn Dickson

I went ahead and opened a new project request with sonatype so long: https://issues.sonatype.org/browse/OSSRH-16625 Please let me know your JIRA username with them and I'll add it.

You need to install https://github.com/django-ckeditor/django-ckeditor first.

Did you follow this recipe? https://django-machina.readthedocs.io/en/stable/customization/recipes/using_another_markup_language.html I used the Quill editor, and had to use these two settings and this function: MACHINA_MARKUP_LANGUAGE = ('xxx.views.utils.quill_html', {'safe_mode': True}) MACHINA_MARKUP_WIDGET = 'django_quill.widgets.QuillWidget' ```python...

After some more debugging it seems that riot.control.on in the tag is calling .on for each store so they all have a copy of the changeResultsHandler... I was assuming that...

Gave up and wrote my own riot control. So now I just use riot.control.on/off/once/trigger everywhere, and don't use riot.observable(this) in store classes. `````` class RiotControl { constructor() { this._broker =...

Sure, I created a gist here: https://gist.github.com/vaughnd/ddc9130ce86583add3809495acb088ae It's in ES6, but should be easy to adapt.