Skip to content

Instantly share code, notes, and snippets.

@OzieWest
Created June 18, 2014 12:16
Show Gist options
  • Select an option

  • Save OzieWest/099a91a44c0e15c4effa to your computer and use it in GitHub Desktop.

Select an option

Save OzieWest/099a91a44c0e15c4effa to your computer and use it in GitHub Desktop.
RequireJS
// Файл myModule.js - определяем
define(function() {
var app = {
val: 1
};
return app;
});
// в любом другом файле
require(['myModule'], function(module) {
var val = module.val;
});
//--------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment