I am using FCKeditor. The editor works well with any other theme but does not show up when using the Blueprint theme.

Comments

lyricnz’s picture

Check your javascript errors. You may find that because Blueprint puts all the javascript at the bottom of the file, inline "Drupal.extend" calls will be broken.

m3avrck’s picture

Project: Blueprint » FCKeditor - WYSIWYG HTML editor
Version: 5.x-1.0 » 5.x-2.x-dev

Right that is likely the cause. I think then the issue is with how FCKEditor defines it JS since if it is setup correctly it should still work.

I suggest moving this issue over there...

Jorrit’s picture

Title: FCKeditor does not show up » Compatibility with themes that put all javascript at the bottom

I will put this at the todo list

wwalc’s picture

5.x fixed in CVS.

wwalc’s picture

Status: Active » Fixed

Fixed in 6--1 and 6--2 as well.

I'm not sure about 6--2 though, in 5--2 and 6--1 I used:
if (Drupal.jsEnabled) {$(document).ready(function() {'. $js .'});}
but in 6--2 I had to remove document.ready call to start FCKeditor. It definitely has something to do with the new loading method of FCKeditor (Drupal.behaviors)... so please correct it Jorrit, if you think it should be done in a different way.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

mattez’s picture

Version: 5.x-2.x-dev » 6.x-1.4
Status: Closed (fixed) » Active

I use last version of Drupal and FCK. When I move
print $scripts;
just before tag, how is written here:
http://craigsworks.com/projects/qtip/docs/#installation

It is highly recommended that all JavaScript includes like the one above be placed after all your content at the footer of the page, just before the end tag. This ensures that all content is loaded before manipulation of the DOM occurs.

FCKeditor never render again. When I copy it back to FCKeditor start works again (so I leave it there for the present).
So this issue is not absolutely fixed IMHO.

mattez’s picture

Component: Code » Documentation
Category: bug » support
Status: Active » Fixed

I found ** solution here **
http://wimleers.com/article/improving-drupals-page-loading-performance#r...
It should be

      ...
      <?php print $scripts ?>
      <?php print $closure ?>
   </body>
</html>

..and FCK works.

Jorrit’s picture

Status: Fixed » Closed (fixed)