Last active
December 20, 2015 13:09
-
-
Save tonylukasavage/6136506 to your computer and use it in GitHub Desktop.
requires
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
var Alloy = require('alloy'), | |
Backbone = require('alloy/backbone'), | |
_ = require('alloy/underscore')._; |
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
if (typeof Alloy === 'undefined') { | |
var Alloy = require('alloy'); | |
} | |
if (typeof Backbone === 'undefined') { | |
var Backbone = require('alloy/backbone'); | |
} | |
if (typeof _ === 'undefined') { | |
var _ = require('alloy/underscore')._; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment