[freeside-commits] freeside/httemplate/elements/fckeditor/editor/css/behaviors disablehandles.htc, NONE, 1.1.2.2 showtableborders.htc, NONE, 1.1.2.2
Ivan,,,
ivan at wavetail.420.am
Mon Jun 16 20:57:48 PDT 2008
- Previous message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/css/images fck_anchor.gif, NONE, 1.1.2.2 fck_flashlogo.gif, NONE, 1.1.2.2 fck_hiddenfield.gif, NONE, 1.1.2.2 fck_pagebreak.gif, NONE, 1.1.2.2
- Next message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/dialog/common fck_dialog_common.css, NONE, 1.1.2.2 fck_dialog_common.js, NONE, 1.1.2.2 fcknumericfield.htc, NONE, 1.1.2.2 moz-bindings.xml, NONE, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/elements/fckeditor/editor/css/behaviors
In directory wavetail.420.am:/tmp/cvs-serv697/fckeditor/editor/css/behaviors
Added Files:
Tag: FREESIDE_1_7_BRANCH
disablehandles.htc showtableborders.htc
Log Message:
adding fckeditor on _17_BRANCH, for customer notices
--- NEW FILE: disablehandles.htc ---
<public:component lightweight="true">
<script language="javascript">
function CancelEvent()
{
return false ;
}
this.onresizestart = CancelEvent ;
this.onbeforeeditfocus = CancelEvent ;
</script>
</public:component>
--- NEW FILE: showtableborders.htc ---
<public:component lightweight="true">
<public:attach event="oncontentready" onevent="ShowBorders()" />
<public:attach event="onpropertychange" onevent="OnPropertyChange()" />
<script language="javascript">
var oClassRegex = /\s*FCK__ShowTableBorders/ ;
function ShowBorders()
{
if ( this.border == 0 )
{
if ( !oClassRegex.test( this.className ) )
this.className += ' FCK__ShowTableBorders' ;
}
else
{
if ( oClassRegex.test( this.className ) )
{
this.className = this.className.replace( oClassRegex, '' ) ;
if ( this.className.length == 0 )
this.removeAttribute( 'className', 0 ) ;
}
}
}
function OnPropertyChange()
{
if ( event.propertyName == 'border' || event.propertyName == 'className' )
ShowBorders.call(this) ;
}
</script>
</public:component>
- Previous message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/css/images fck_anchor.gif, NONE, 1.1.2.2 fck_flashlogo.gif, NONE, 1.1.2.2 fck_hiddenfield.gif, NONE, 1.1.2.2 fck_pagebreak.gif, NONE, 1.1.2.2
- Next message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/dialog/common fck_dialog_common.css, NONE, 1.1.2.2 fck_dialog_common.js, NONE, 1.1.2.2 fcknumericfield.htc, NONE, 1.1.2.2 moz-bindings.xml, NONE, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list