mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2026-01-25 15:23:04 +00:00
18 lines
393 B
JavaScript
18 lines
393 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 3059 2015-05-04 21:11:01Z tgaskins $
|
|
*/
|
|
|
|
requirejs.config({
|
|
"paths": {
|
|
"SubSurface": "SubSurface"
|
|
}
|
|
});
|
|
|
|
requirejs(["SubSurface"], function (SubSurface) {
|
|
new SubSurface()
|
|
});
|