Created
June 18, 2014 12:16
-
-
Save OzieWest/099a91a44c0e15c4effa to your computer and use it in GitHub Desktop.
RequireJS
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
| // Файл 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