Changeset 685

Show
Ignore:
Timestamp:
2008-07-18 18:16:32 (7 weeks ago)
Author:
mikelietz
Message:

plugin: FCKeditor UI fixed to appear on publish page. NicEdit fixed so 'content' doesn't obscure the buttons, thanks ayunyan (fix was in FCKeditor)!

Location:
plugins
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/NicEdit/trunk/NicEdit.plugin.php

    r684 r685  
    9090      echo <<<NICEDIT 
    9191      <script type="text/javascript"> 
     92      $('[@for=content]').removeAttr('for'); 
    9293      new nicEditor({$options}).panelInstance('content'); 
    9394      habari.editor = { 
  • plugins/fckeditor/trunk/fckeditor.plugin.php

    r246 r685  
    2020        return array( 
    2121            'name' => 'FCKeditor', 
    22             'version' => '0.01', 
     22            'version' => '0.02', 
    2323            'url' => 'http://ayu.commun.jp/habari-fckeditor', 
    2424            'author' => 'ayunyan', 
     
    4949    public function action_admin_header($theme) 
    5050    { 
    51         if ( $theme->admin_page != 'publish' ) return; 
     51        if ( $theme->page != 'publish' ) return; 
    5252        Stack::add( 'admin_header_javascript', $this->get_url() . '/fckeditor/fckeditor.js' ); 
    5353    } 
     
    6262    public function action_admin_footer($theme) 
    6363    { 
    64         if ( $theme->admin_page != 'publish' ) return; 
     64        if ( $theme->page != 'publish' ) return; 
    6565?> 
    6666<script type="text/javascript">