Created
November 25, 2011 17:47
-
-
Save ryanflorence/1394062 to your computer and use it in GitHub Desktop.
This file contains 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
el.addEventListener('click', function openDialog(event) { | |
// open the dialog | |
}); |
This file contains 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
el.addEventListener 'click', openDialog = (event) -> | |
# open the dialog | |
# no thanks |
This file contains 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
// what the coffeescript becomes | |
var openDialog; | |
el.addEventListener('click', openDialog = function(event) { | |
// open the dialog | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment