Skip to content

Instantly share code, notes, and snippets.

@darkoverlordofdata
Last active December 31, 2015 05:18
Show Gist options
  • Save darkoverlordofdata/7939477 to your computer and use it in GitHub Desktop.
Save darkoverlordofdata/7939477 to your computer and use it in GitHub Desktop.
jQuery plugin
#
# do syntax was made for jQuery...
#
do ($ = jQuery, window, document) ->
_defaults =
color: "#556b2f"
backgroundColor: "white"
#
# $.fn.plugin is a shortcut for
$::plugin = ($options = {}) ->
$options = $.extend(_defaults, $options)
@css
color: $options.color
backgroundColor: $options.backgroundColor
@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment