Changeset 627


Ignore:
Timestamp:
05/25/09 16:31:56 (3 years ago)
Author:
totoro
Message:

Fix #156 - consistent behaviour in MSIE and FF.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wymeditor/jquery.wymeditor.explorer.js

    r625 r627  
    106106     
    107107        var container = this.findUp(this.container(), WYMeditor.LI); 
    108         if(container) 
    109             this._doc.execCommand(cmd); 
     108        if(container) { 
     109            var ancestor = container.parentNode.parentNode; 
     110            if(container.parentNode.childNodes.length>1 
     111              || ancestor.tagName.toLowerCase() == WYMeditor.OL 
     112              || ancestor.tagName.toLowerCase() == WYMeditor.UL) 
     113              this._doc.execCommand(cmd); 
     114        } 
    110115    break; 
    111116    default: 
Note: See TracChangeset for help on using the changeset viewer.