Closed (fixed)
Project:
Drupal core
Version:
8.0.x-dev
Component:
edit.module
Priority:
Normal
Category:
Task
Assigned:
Issue tags:
Reporter:
Created:
27 Dec 2012 at 15:33 UTC
Updated:
29 Jul 2014 at 21:42 UTC
Create.js makes too simplistic assumptions in some areas, forcing us to have more and uglier boilerplate code than necessary.
The problems have been discussed with the Create.js maintainer and will be fixed before a Create.js 1.0 release (they've been marked as blockers).
None.
None.
Comments
Comment #1
wim leersAs part of #1886566: Make WYSIWYG editors available for in-place editing, I worked on improving the naming of the different PropertyEditor widgets. Instead of:
this:
But then I ran into ridiculous problems because jQuery UI Widget works in ways that are completely beyond all common sense: http://stackoverflow.com/questions/7739525/jquery-ui-how-to-call-a-widge.... (namespaces aren't actually namespaces in jQuery UI Widgets.)
So I had to use "bridging" to be able to use namespaces:
jQuery.widget.bridge('DrupalEditEditor_direct', jQuery.DrupalEditEditor.direct);Unfortunately, that breaks with Create.js: https://github.com/bergie/create/issues/166. Hence, that issue is now also listed in the issue summary.
Comment #2
wim leers#1979784: Factor Create.js and VIE.js out of the Edit module removed Create.js and VIE.js, so this was implicitly fixed there.
Comment #2.0
wim leersAdding https://github.com/bergie/create/issues/166.