[ Index ]
 

Code source de GeekLog 1.4.1

Accédez au Source d'autres logiciels libres

title

Body

[fermer]

/public_html/fckeditor/editor/css/behaviors/ -> showtableborders.htc (source)

   1  <public:component lightweight="true">
   2  
   3  <public:attach event="oncontentready" onevent="ShowBorders()" />
   4  <public:attach event="onpropertychange" onevent="OnPropertyChange()" />
   5  
   6  <script language="javascript">
   7  
   8  var oClassRegex = /\s*FCK__ShowTableBorders/ ;
   9  
  10  function ShowBorders()
  11  {
  12      if ( this.border == 0 )
  13      {
  14          if ( !oClassRegex.test( this.className ) )
  15              this.className += ' FCK__ShowTableBorders' ;
  16      }
  17      else
  18      {
  19          if ( oClassRegex.test( this.className ) )
  20          {
  21              this.className = this.className.replace( oClassRegex, '' ) ;
  22              if ( this.className.length == 0 )
  23                  this.removeAttribute( 'className', 0 ) ;
  24          }
  25      }
  26  }
  27  
  28  function OnPropertyChange()
  29  {
  30      if ( event.propertyName == 'border' || event.propertyName == 'className' )
  31          ShowBorders.call(this) ;
  32  }
  33  
  34  </script>
  35  
  36  </public:component>


Généré le : Wed Nov 21 12:27:40 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics