~ubuntu-branches/ubuntu/intrepid/moin/intrepid-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckcontextmenuseparator.js

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-02-14 16:09:24 UTC
  • mfrom: (0.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20060214160924-fyrx3gvknzqvt4vj
Tags: 1.5.2-1ubuntu1
Drop python2.3 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        var oCell = this._Row.insertCell(-1) ;
31
31
        oCell.className = 'CM_Icon' ;
32
32
        
 
33
        var oDoc = targetTable.ownerDocument || targetTable.document ;
 
34
        
33
35
        oCell = this._Row.insertCell(-1) ;
34
36
        oCell.className = 'CM_Label' ;
35
 
        oCell.innerHTML = '<div></div>' ;
 
37
        oCell.appendChild( oDoc.createElement( 'DIV' ) ).className = 'CM_Separator_Line' ;
36
38
}
37
39
 
38
40
FCKContextMenuSeparator.prototype.SetVisible = function( isVisible )