Changeset 36 for trunk/app/views/helpers

Show
Ignore:
Timestamp:
07/16/07 17:29:03 (17 months ago)
Author:
aarkerio
Message:

Images

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/helpers/fck.php

    r1 r36  
    22class FckHelper extends Helper 
    33{ 
    4    public function load($id, $toolbar = 'Karamelo', $width = 700) { 
     4   public function load($id, $toolbar = 'Karamelo', $width = 700, $height = 450) { 
    55         
    66        $did = ''; 
     
    1717bFCKeditor_$did.ToolbarSet = '$toolbar'; 
    1818bFCKeditor_$did.Width = $width; 
    19 bFCKeditor_$did.Height = 350; 
     19bFCKeditor_$did.Height = $height; 
    2020bFCKeditor_$did.Skin = 'silver'; 
    2121bFCKeditor_$did.ReplaceTextarea(); 
     
    2626    } 
    2727} 
    28 ?>  
     28?>