[Framework] Initial skeletons for framework
Initial skeletons for framework classes, WTD-518.
This commit is contained in:
23
platform/framework/src/BundleLoader.js
Normal file
23
platform/framework/src/BundleLoader.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/*global define*/
|
||||
|
||||
/**
|
||||
* Module defining BundleLoader.js. Created by vwoeltje on 10/31/14.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
*
|
||||
* @constructor
|
||||
*/
|
||||
function BundleLoader() {
|
||||
return {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
return BundleLoader;
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user