Changeset 33692

Show
Ignore:
Timestamp:
06/01/09 16:18:38 (4 years ago)
Author:
os0x
Message:
  • SHIFT -> S
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/minibuffer.user.js

    r33690 r33692  
    148148             this.through_input_elements && 
    149149             /^(?:input|textarea)$/.test(aEvent.target.nodeName.toLowerCase())) return; 
    150     var ch = ((aEvent.keyCode in this.keyCodeStr) && (aEvent.shiftKey? 'SHIFT-' + this.keyCodeStr[aEvent.keyCode] : this.keyCodeStr[aEvent.keyCode])) || 
    151              ((aEvent.which in this.whichStr) && (aEvent.shiftKey? 'SHIFT-' + this.whichStr[aEvent.which] : this.whichStr[aEvent.which])) || 
     150    var ch = ((aEvent.keyCode in this.keyCodeStr) && (aEvent.shiftKey? 'S-' + this.keyCodeStr[aEvent.keyCode] : this.keyCodeStr[aEvent.keyCode])) || 
     151             ((aEvent.which in this.whichStr) && (aEvent.shiftKey? 'S-' + this.whichStr[aEvent.which] : this.whichStr[aEvent.which])) || 
    152152             String.fromCharCode(aEvent.which); 
    153153          var kf = this.findByEvent(aEvent, ch);