Skip to content

Instantly share code, notes, and snippets.

@zeppelin
Created May 9, 2011 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeppelin/963114 to your computer and use it in GitHub Desktop.
Save zeppelin/963114 to your computer and use it in GitHub Desktop.
SproutCore `performKeyEquivalent` method
performKeyEquivalent: function(keystring, evt) {
if ( keystring == "escape" ) {
// Do something funny...
return YES;
}
return sc_super();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment