Skip to content

Instantly share code, notes, and snippets.

View Islati's full-sized avatar
🥷

Islati Islati

🥷
View GitHub Profile
@Islati
Islati / cs-jq-plugin-template.coffee
Created March 8, 2016 20:56 — 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) ->