Ticket #970: 970.patch

File 970.patch, 1.3 kB (added by martinkou, 5 months ago)
  • _whatsnew.html

     
    108108                        behind smiley icons and special characters in their corresponding dialogs.</li> 
    109109                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1693">#1693</a>] Custom error messages are now  
    110110                        properly displayed in the file browser.</li> 
     111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/970">#970</a>] The text and value fields in 
     112                        the selection box dialog will no longer extend beyond the dialog limits when the user inputs a very 
     113                        long text or value for one of the selection options.</li> 
    111114        </ul> 
    112115        <p> 
    113116                <a href="_whatsnew_history.html">See previous versions history</a> 
  • editor/dialog/fck_select.html

     
    4949        oListText       = document.getElementById( 'cmbText' ) ; 
    5050        oListValue      = document.getElementById( 'cmbValue' ) ; 
    5151 
     52        oListText.style.width = oListText.offsetWidth ; 
     53        oListValue.style.width = oListValue.offsetWidth ; 
     54 
    5255        if ( oActiveEl && oActiveEl.tagName == 'SELECT' ) 
    5356        { 
    5457                GetE('txtName').value           = oActiveEl.name ;