forked from extern/egroupware
fixed ckeditor wont start with NOT expanded toolbar
This commit is contained in:
parent
c1bd68281c
commit
1dd3ad5e0a
@ -106,7 +106,7 @@ class xul_io
|
||||
'size' => 'image,ro_image'
|
||||
),
|
||||
'htmlarea' => array(
|
||||
'size' => 'mode,height,width,toolbar,base_href',
|
||||
'size' => 'mode,height,width,expand_toolbar,base_href',
|
||||
),
|
||||
'nextmatch' => array(
|
||||
'size' => 'template,hide_header,header_left,header_right',
|
||||
|
@ -27,7 +27,7 @@
|
||||
var et2_htmlarea = et2_inputWidget.extend(
|
||||
{
|
||||
modes: ['ascii','simple','extended','advanced'],
|
||||
|
||||
|
||||
attributes: {
|
||||
'mode': {
|
||||
'name': 'Mode',
|
||||
@ -48,7 +48,7 @@ var et2_htmlarea = et2_inputWidget.extend(
|
||||
'expand_toolbar': {
|
||||
'name': 'Expand Toolbar',
|
||||
'default': true,
|
||||
'type':'any',
|
||||
'type':'boolean',
|
||||
'description': 'Have the toolbar expanded (visible)'
|
||||
},
|
||||
'base_href': {
|
||||
@ -71,7 +71,7 @@ var et2_htmlarea = et2_inputWidget.extend(
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
*
|
||||
* @param _parent
|
||||
* @param _attrs
|
||||
* @memberOf et2_htmlarea
|
||||
@ -87,7 +87,7 @@ var et2_htmlarea = et2_inputWidget.extend(
|
||||
.addClass('et2_textbox_ro');
|
||||
this.setDOMNode(this.htmlNode[0]);
|
||||
},
|
||||
|
||||
|
||||
transformAttributes: function(_attrs) {
|
||||
|
||||
// Check mode, some apps jammed everything in there
|
||||
@ -102,11 +102,11 @@ var et2_htmlarea = et2_inputWidget.extend(
|
||||
}
|
||||
this._super.apply(this, arguments);
|
||||
},
|
||||
|
||||
|
||||
doLoadingFinished: function() {
|
||||
this._super.apply(this, arguments);
|
||||
if(this.mode == 'ascii') return;
|
||||
|
||||
|
||||
var self = this;
|
||||
var ckeditor;
|
||||
try
|
||||
@ -161,7 +161,7 @@ var et2_htmlarea = et2_inputWidget.extend(
|
||||
}
|
||||
else
|
||||
{
|
||||
this.htmlNode.val(_value);
|
||||
this.htmlNode.val(_value);
|
||||
this.value = _value;
|
||||
}
|
||||
} catch (e) {
|
||||
|
@ -224,7 +224,8 @@ class egw_ckeditor_config
|
||||
$config['removePlugins'] = 'elementspath';
|
||||
|
||||
$config['toolbarCanCollapse'] = true;
|
||||
$config['toolbarStartupExpanded'] = $expanded_toolbar;
|
||||
$config['toolbarStartupExpanded'] = is_bool($expanded_toolbar) ? $expanded_toolbar :
|
||||
($expanded_toolbar === 'false' ? false : (boolean)$expanded_toolbar);
|
||||
|
||||
$config['filebrowserBrowseUrl'] = self::get_filebrowserBrowseUrl($start_path);
|
||||
$config['filebrowserWindowHeight'] = 640;
|
||||
@ -377,7 +378,7 @@ class egw_ckeditor_config
|
||||
self::add_default_options($config, $height, $expanded_toolbar, $start_path);
|
||||
self::add_spellchecker_options($config, $spellchecker_button, $scayt_button);
|
||||
self::add_toolbar_options($config, $mode, $spellchecker_button, $scayt_button);
|
||||
|
||||
//error_log(__METHOD__."('$mode', $height, ".array2string($expanded_toolbar).") returning ".array2string($config));
|
||||
return $config;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user