Skip to content

Instantly share code, notes, and snippets.

View edariedl's full-sized avatar

Eda Riedl edariedl

View GitHub Profile
@edariedl
edariedl / cs-jq-plugin-template.coffee
Created June 7, 2017 12:30 — forked from rjz/cs-jq-plugin-template.coffee
Coffeescript jQuery Plugin Class Template
# A class-based template for jQuery plugins in Coffeescript
#
# $('.target').myPlugin({ paramA: 'not-foo' });
# $('.target').myPlugin('myMethod', 'Hello, world');
#
# Check out Alan Hogan's original jQuery plugin template:
# https://github.com/alanhogan/Coffeescript-jQuery-Plugin-Template
#
(($, window) ->