Last active
December 16, 2015 01:39
-
-
Save stdavis/5356872 to your computer and use it in GitHub Desktop.
Revisions
-
Scott Davis revised this gist
Apr 10, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ define(function () { // summary: // A dojo loader plugin for loading esri modules so that // they get ignored by the build system. -
Scott Davis created this gist
Apr 10, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ define([], function () { // summary: // A dojo loader plugin for loading esri modules so that // they get ignored by the build system. return { load: function (id, require, callback) { // id: String // esri module id // require: Function // AMD require; usually a context-sensitive require bound to the module making the plugin request // callback: Function // Callback function which will be called, when the loading finished. require([id], function (mod) { callback(mod); }); } }; });