Last active
January 4, 2016 17:48
-
-
Save huffman/c0f1e5cdabf62106cb22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Controller.keyPressEvent.connect(function(ev) { | |
print("In keyPressEvent 1"); | |
throw("Exception in keyPressEvent 1"); | |
}); | |
Controller.keyPressEvent.connect(function(ev) { | |
print("In keyPressEvent 2"); | |
throw("Exception in keyPressEvent 2"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment