diff options
author | Adhitya Kamakshidasan | 2016-07-02 12:52:09 +0530 |
---|---|---|
committer | Adhitya Kamakshidasan | 2016-07-02 12:52:21 +0530 |
commit | c1b448a22291451308cca9946e2fb349a68f0fe8 (patch) | |
tree | 56af2abdbef86e86d66e33a713dabf1fb2e775cd /dependencies.js | |
parent | b7574a3ed3d966ad03aea6a5ad7a32d6a98c833c (diff) | |
download | xcos-on-web-c1b448a22291451308cca9946e2fb349a68f0fe8.tar.gz xcos-on-web-c1b448a22291451308cca9946e2fb349a68f0fe8.tar.bz2 xcos-on-web-c1b448a22291451308cca9946e2fb349a68f0fe8.zip |
Combined all JavaScript files
Diffstat (limited to 'dependencies.js')
-rw-r--r-- | dependencies.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dependencies.js b/dependencies.js index 5edd328..ea46827 100644 --- a/dependencies.js +++ b/dependencies.js @@ -1,5 +1,10 @@ $.getScript('math.js'); +$.getScript('combined.js'); +// @Adhitya: 02-07-2016: Commented Jitesh's work to call Data Structures individually, +// and combined all of them into combined.js using combine_script.bat + +/* $.ajax({ type: "POST", @@ -14,16 +19,15 @@ $.ajax({ url: "/data_structures_correct/" }, success: function (data) { - - /* - * @Parameter: data will have the required filenames in the mentioned folder - * For each url, add the script to the body div element with getScript function - */ + + // @Parameter: data will have the required filenames in the mentioned folder + // For each url, add the script to the body div element with getScript function for (i in data) { $.getScript(data[i]); } } }); +*/ function AfficheBlock() { if (arguments.length > 0) { |