Skip to content

Instantly share code, notes, and snippets.

@bbttxu
Created October 21, 2013 16:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbttxu/7086905 to your computer and use it in GitHub Desktop.
Save bbttxu/7086905 to your computer and use it in GitHub Desktop.
jquery plugin boilerplate
((factory) ->
if typeof define is "function" and define.amd
# AMD. Register as an anonymous module.
define ["jquery"], factory
else
# Browser globals
factory jQuery
) ($) ->
$.fn.jqueryPlugin = ->
# Put your plugin code here
@bbttxu
Copy link
Author

bbttxu commented Oct 21, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment