Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created March 5, 2010 19:30
Show Gist options
  • Select an option

  • Save jpoz/323043 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/323043 to your computer and use it in GitHub Desktop.
$.engineer.define('blinky', {
behavior: function(options) {
var self = this;
var publicMethods = {};
publicMethods.blink = function() {
self.fadeOut(100).fadeIn(200);
}
return publicMethods;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment