mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 09:58:16 +01:00
Hide editor statusbar from compose dialog
This commit is contained in:
parent
5c03107500
commit
7089489db9
@ -67,6 +67,12 @@ var et2_htmlarea = (function(){ "use strict"; return et2_inputWidget.extend([et2
|
|||||||
description: "Display menubar at the top of the editor",
|
description: "Display menubar at the top of the editor",
|
||||||
type: "boolean",
|
type: "boolean",
|
||||||
default: true
|
default: true
|
||||||
|
},
|
||||||
|
statusbar: {
|
||||||
|
name: "Status bar",
|
||||||
|
description: "Enable/disable status bar on the bottom of ediotr",
|
||||||
|
type: "boolean",
|
||||||
|
default: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -116,6 +122,7 @@ var et2_htmlarea = (function(){ "use strict"; return et2_inputWidget.extend([et2
|
|||||||
target: this.htmlNode[0],
|
target: this.htmlNode[0],
|
||||||
body_id: this.dom + '_htmlarea',
|
body_id: this.dom + '_htmlarea',
|
||||||
menubar: false,
|
menubar: false,
|
||||||
|
statusbar: this.options.statusbar,
|
||||||
branding: false,
|
branding: false,
|
||||||
resize: false,
|
resize: false,
|
||||||
height: this.options.height,
|
height: this.options.height,
|
||||||
|
@ -87,7 +87,7 @@
|
|||||||
</vbox>
|
</vbox>
|
||||||
<vbox class="mailComposeBodySection" width="100%">
|
<vbox class="mailComposeBodySection" width="100%">
|
||||||
<hbox disabled="@is_plain" class="mailComposeBody mailComposeHtmlContainer">
|
<hbox disabled="@is_plain" class="mailComposeBody mailComposeHtmlContainer">
|
||||||
<htmlarea name="mail_htmltext" id="mail_htmltext" menubar="false" mode="simple" imageUpload="link_to" expand_toolbar="true" height="478px" width="100%" resize_ratio="0"/>
|
<htmlarea name="mail_htmltext" id="mail_htmltext" statusbar="false" menubar="false" mode="simple" imageUpload="link_to" expand_toolbar="true" height="478px" width="100%" resize_ratio="0"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
<hbox disabled="@is_html" class="mailComposeBody mailComposeTextContainer">
|
<hbox disabled="@is_html" class="mailComposeBody mailComposeTextContainer">
|
||||||
<textbox multiline="true" rows="40" cols="120" width="100%" span="all" no_lang="1" name="mail_plaintext" id="mail_plaintext" resize_ratio="0"/>
|
<textbox multiline="true" rows="40" cols="120" width="100%" span="all" no_lang="1" name="mail_plaintext" id="mail_plaintext" resize_ratio="0"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user