mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2026-01-18 15:12:57 +00:00
18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
/*
|
|
* Copyright (C) 2014 United States Government as represented by the Administrator of the
|
|
* National Aeronautics and Space Administration. All Rights Reserved.
|
|
*/
|
|
/**
|
|
* @version $Id: app.js 3185 2015-06-12 19:12:09Z tgaskins $
|
|
*/
|
|
|
|
requirejs.config({
|
|
"paths": {
|
|
"Explorer": "Explorer"
|
|
}
|
|
});
|
|
|
|
requirejs(["Explorer"], function (Explorer) {
|
|
new Explorer()
|
|
});
|