Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/css/behaviors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/css/behaviors
Modified Files:
showtableborders.htc
Added Files:
disablehandles.htc
Log Message:
Commiting file additions and modification from SVN revision 2028 to 2029...
Changes made by frank on 2005-09-29 21:42:57 +0200 (Thu, 29 Sep 2005) corresponding to SVN revision 2029 with message:
updating fckeditor in dynapi
Index: showtableborders.htc
===================================================================
RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/css/behaviors/showtableborders.htc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** showtableborders.htc 1 Sep 2005 18:15:41 -0000 1.1
--- showtableborders.htc 29 Sep 2005 19:49:17 -0000 1.2
***************
*** 5,14 ****
<script language="javascript">
! var oClassRegex = /\s*FCK__ShowTableBorders\s*/ ;
var FCKConfig = window.parent.FCKConfig ;
function ShowBorders()
{
! if ( this.border == 0 && FCKConfig.ShowBorders )
{
if ( !oClassRegex.test( this.className ) )
--- 5,14 ----
<script language="javascript">
! var oClassRegex = /\s*FCK__ShowTableBorders/ ;
var FCKConfig = window.parent.FCKConfig ;
function ShowBorders()
{
! if ( this.border == 0 )
{
if ( !oClassRegex.test( this.className ) )
***************
*** 28,32 ****
function OnPropertyChange()
{
! if ( FCKConfig.ShowBorders && ( event.propertyName == 'border' || event.propertyName == 'className' ) )
ShowBorders() ;
}
--- 28,32 ----
function OnPropertyChange()
{
! if ( event.propertyName == 'border' || event.propertyName == 'className' )
ShowBorders() ;
}
--- NEW FILE: disablehandles.htc ---
<public:component lightweight="true">
<script language="javascript">
function CancelEvent()
{
return false ;
}
this.onresizestart = CancelEvent ;
this.onbeforeeditfocus = CancelEvent ;
</script>
</public:component>
|