Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Declare new attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 21, 2013
1 parent fbb8565 commit 3d436b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions core/src/plugins/core.ajaxplorer/ajxp_registry.xsd
Expand Up @@ -293,6 +293,7 @@
<xs:attribute name="iconClass" use="optional"/>
<xs:attribute name="mimes" use="required"/>
<xs:attribute name="openable" use="required" type="xs:boolean"/>
<xs:attribute name="modalOnly" type="xs:boolean"/>
<xs:attribute name="order" type="xs:integer"/>
<xs:attribute name="previewProvider" type="xs:boolean"/>
<xs:attribute name="text" use="required" type="xs:NMTOKEN"/>
Expand Down
4 changes: 2 additions & 2 deletions core/src/plugins/editor.codepress/class.CodePressEditor.js
Expand Up @@ -19,9 +19,9 @@
*/
Class.create("CodePressEditor", TextEditor, {

initialize: function($super, oFormObject)
initialize: function($super, oFormObject, options)
{
$super(oFormObject);
$super(oFormObject, options);
},


Expand Down

0 comments on commit 3d436b1

Please sign in to comment.