Created
February 12, 2014 00:43
-
-
Save neduma/8947617 to your computer and use it in GitHub Desktop.
Javascript Init Blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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