Created
April 7, 2011 23:44
-
-
Save jimeh/909017 to your computer and use it in GitHub Desktop.
Example jQuery plugin written in CoffeeScript, and the resulting compiled JavaScript file.
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
$.fn.extend | |
myplugin: (options) -> | |
self = $.fn.myplugin | |
opts = $.extend {}, self.default_options, options | |
$(this).each (i, el) -> | |
self.init el, opts | |
self.log el if opts.log | |
$.extend $.fn.myplugin, | |
default_options: | |
color: 'red' | |
log: true | |
init: (el, opts) -> | |
this.color el, opts | |
color: (el, opts) -> | |
$(el).css('color', opts.color) | |
log: (msg) -> | |
console.log msg |
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
(function() { | |
$.fn.extend({ | |
myplugin: function(options) { | |
var opts, self; | |
self = $.fn.myplugin; | |
opts = $.extend({}, self.default_options, options); | |
return $(this).each(function(i, el) { | |
self.init(el, opts); | |
if (opts.log) { | |
return self.log(el); | |
} | |
}); | |
} | |
}); | |
$.extend($.fn.myplugin, { | |
default_options: { | |
color: 'red', | |
log: true | |
}, | |
init: function(el, opts) { | |
return this.color(el, opts); | |
}, | |
color: function(el, opts) { | |
return $(el).css('color', opts.color); | |
}, | |
log: function(msg) { | |
return console.log(msg); | |
} | |
}); | |
}).call(this); |
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
$ -> | |
$('#world').myplugin(); |
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
(function() { | |
$(function() { | |
return $('#world').myplugin(); | |
}); | |
}).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice work!