Skip to content

Instantly share code, notes, and snippets.

@ActionScripted
Created October 24, 2013 15:07
Show Gist options
  • Save ActionScripted/7138904 to your computer and use it in GitHub Desktop.
Save ActionScripted/7138904 to your computer and use it in GitHub Desktop.
// Generated by CoffeeScript 1.6.3
/*
first.js -- kicking coffee's tires w/jquery
*/
(function() {
var $;
if (typeof jQuery !== "undefined" && jQuery !== null) {
$ = jQuery;
$(function() {
$('h1').animate({
padding: '50px'
}, 1000, function(e) {
alert('asdf');
return true;
});
return true;
});
}
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment