Closed (fixed)
Project:
Edit
Version:
7.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
20 Jan 2013 at 10:01 UTC
Updated:
4 Jan 2014 at 02:42 UTC
Jump to comment: Most recent
Comments
Comment #1
nod_Comment #2
nod_Problem is in
editingWidgets/*widget.jsfiles, there is a preventDefault on click event that is bound but never released.Comment #3
wim leersIf so, then that bug is most likely also in D8, so I'll port it over to 8.
Comment #4
nod_Comment #5
wim leersConfirmed that this is also a bug in Drupal 8. Funny that nobody reported this yet.
Comment #6
nod_Nailed it.
There is a problem when the page opens with
#editbut that should be solvable. I'll look into it tomorrow.Comment #7
wim leersI wonder if this is related to the lazy loading of editors.
Comment #8
nod_I'd be surprised. It's all happening in app.js which is present on page load.
Comment #9
nod_Comes down to a createjs issue https://github.com/bergie/create/issues/133
Comment #10
nod_Ok this one is solved but I made another more tricky bug appear, see #1895458: Duplicate data-edit-id attribute for node title.
Comment #11
wim leersHow did you solve this without fixing the upstream Create.js problem?
Comment #12
nod_with http://drupalcode.org/project/edit.git/commitdiff/1fec4426e4c9c47c1d7990... and http://drupalcode.org/project/edit.git/commitdiff/f8310b952c495aee4f9e63...
I changed
_manageDocumentFocusto be called later (app.js#l117) and did the binding in there. Unbinding is in_releaseDocumentFocusManagement.