Skip to content

Instantly share code, notes, and snippets.

@erichocean
Created January 28, 2011 17:52
Show Gist options
  • Save erichocean/800642 to your computer and use it in GitHub Desktop.
Save erichocean/800642 to your computer and use it in GitHub Desktop.
/** @private
Handle space key event. Do action
*/
insertText: function(chr, evt) {
if (chr === ' ') {
var sel = this.get('selection');
if (sel && sel.get('length')>0) {
this.invokeLater(this._cv_action, 0, null, evt);
}
return YES ;
} else return NO ;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment