Created
December 8, 2011 15:26
-
-
Save Gregg/1447292 to your computer and use it in GitHub Desktop.
Revisions
-
Gregg revised this gist
Dec 8, 2011 . 2 changed files with 6 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ SendTwo( -> alert 'thing 1' -> alert 'thing 2' ) File renamed without changes. -
Gregg created this gist
Dec 8, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ SendTwo(function() { alert('thing 1'); }, function() { alert('thing 2'); } );