Skip to content

Instantly share code, notes, and snippets.

@biophonc
Created September 18, 2013 19:43
Show Gist options
  • Save biophonc/6614489 to your computer and use it in GitHub Desktop.
Save biophonc/6614489 to your computer and use it in GitHub Desktop.
# @see: https://github.com/umdjs/umd/blob/master/jqueryPlugin.js
((factory) ->
if typeof define is 'function' && define.amd
# AMD. Register as anonymous module.
define ['jquery'], factory
return
else
# Browser globals.
factory jQuery
return
)(($) ->
$.fn.foo = () ->
alert "wtf"
return
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment