Skip to content

Instantly share code, notes, and snippets.

@neduma
Created February 12, 2014 00:43
Show Gist options
  • Save neduma/8947617 to your computer and use it in GitHub Desktop.
Save neduma/8947617 to your computer and use it in GitHub Desktop.
Javascript Init Blocks
// Style 1
!function($, Backbone, _, app) {
}(jQuery, Backbone, _, my.app);
// Style 2
$(function() {
}.call(jQuery, Backbone, _, my.app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment