Skip to content

Instantly share code, notes, and snippets.

@Gregg
Created December 8, 2011 15:26
Show Gist options
  • Save Gregg/1447292 to your computer and use it in GitHub Desktop.
Save Gregg/1447292 to your computer and use it in GitHub Desktop.

Revisions

  1. Gregg revised this gist Dec 8, 2011. 2 changed files with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions CoffeeScript.coffee
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    SendTwo(
    ->
    alert 'thing 1'
    ->
    alert 'thing 2'
    )
    File renamed without changes.
  2. Gregg created this gist Dec 8, 2011.
    6 changes: 6 additions & 0 deletions gistfile1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    SendTwo(function() {
    alert('thing 1');
    }, function() {
    alert('thing 2');
    }
    );