Changeset 690

Show
Ignore:
Timestamp:
09/07/06 13:36:32 (2 years ago)
Author:
JeremyRuston
Message:

Do not insert tabs into input boxes (ticket #157)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Branches/2.1/core/js/Story.js

    r689 r690  
    245245                { 
    246246                case 9: // Tab 
    247                         if(config.options.chkInsertTabs && ( target.tagName.toLowerCase() == "input" || target.tagName.toLowerCase() == "textarea")) 
     247                        if(config.options.chkInsertTabs && target.tagName.toLowerCase() == "textarea") 
    248248                                { 
    249249                                replaceSelection(target,String.fromCharCode(9));