Closed (fixed)
Project:
Autosave
Version:
7.x-2.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
30 Nov 2011 at 14:50 UTC
Updated:
4 Jan 2014 at 01:39 UTC
Jump to comment: Most recent
Comments
Comment #1
Crell commentedThere's apparently a bug in the Javascript that checks to see if tinymce is enabled. Rather than skipping it if it is, it just breaks entirely. :-(
Comment #2
thbnelson commentedthe "usual fix" for the javascript of changing the "if (tinymce) { " to "if (typeof(tinymce) !== 'undefined') {" gets me past this point.
and into other issues.
Comment #3
Crell commentedCan you submit a patch that changes that?
Comment #4
Crell commentedThe fix in #2 seems to have worked. Committed. Thanks.
I hate Javascript.