Closed (fixed)
Project:
CKEditor 4 - WYSIWYG HTML editor
Version:
6.x-1.x-dev
Component:
User interface
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
21 Dec 2009 at 17:15 UTC
Updated:
4 Jul 2013 at 13:17 UTC
Jump to comment: Most recent file
Comments
Comment #1
mephir commentedComment #2
wwalc commentedWorks, but I think we could add also
in Drupal.ckeditorOff when teaser exists, but is empty ( !(data.length>1) )?
Comment #3
mephir commentedchanges commited to cvs
Comment #4
agence web coheractio commentedWorks perfectly
Thanks
Laurent
Comment #5
agence web coheractio commentedHi again,
I'm re-opening the issue because the fix brought a side-effect.
I can now see the checkbox. If I untick it and save, this works fine (teaser not displayed with full view).
However when I edit again the node, the checkbox comes ticked. So when I save, my initial set up is erased (this means that I have to remember to untick everytime).
Any way to fix this?
Many thanks
Laurent
Comment #6
agence web coheractio commentedAny idea where the issue can come from?
Thanks
Laurent
Comment #7
wwalc commentedComment #8
mephir commentedPatch attached.
Comment #9
agence web coheractio commentedTested.
Works perfectly
Many thanks
Laurent
Comment #10
mephir commentedChanges commited to cvs
Comment #12
merilainen commentedCould somebody describe what is this patch supposed to do? I can hide the checkbox with CSS, using 1.0 version of the module. Or was that the fix?
Anyway, I think it should be an option in the module to hide the button. It's not always useful and will just confuse most of the users.
Comment #13
mephir commentedPatch was released before merging changes into CVS repository and release 1.0 version, so now you don't need patch.
Comment #14
pagach commentedThe #8 patch did not work for me, so i changed
var ch_checked = teaser.checkbox.attr('checked');into
var ch_checked = teaser.checkbox[0].checked;and
teaser.checkbox.attr('checked', 'false');into
teaser.checkbox[0].checked=ch_checked;