From: Timmy Willison Date: Thu, 14 Jan 2016 17:24:33 +0000 (-0500) Subject: Docs: add note about code organization with AMD X-Git-Tag: 3.0.0-beta1~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dbc4608ed10bd1347649e6f1514f459957cda003;p=jquery.git Docs: add note about code organization with AMD Fixes gh-2750 Close gh-2832 --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3ed61a4b3..f7d52141b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -134,6 +134,12 @@ Alternatively, you can **load tests in AMD** to avoid the need for rebuilding al Click "Load with AMD" after loading the test page. +### Repo organization + +The jQuery source is organized with AMD modules and then concatenated and compiled at build time. + +jQuery also contains some special modules we call "var modules", which are placed in folders named "var". At build time, these small modules are compiled to simple var statements. This makes it easy for us to share variables across modules. Browse the "src" folder for examples. + ### Browser support Remember that jQuery supports multiple browsers and their versions; any contributed code must work in all of them. You can refer to the [browser support page](https://jquery.com/browser-support/) for the current list of supported browsers.