meshviewer/app.js
2016-06-01 22:25:52 +02:00

29 lines
826 B
JavaScript

"use strict";
require.config({
baseUrl: "lib",
paths: {
"leaflet": "../bower_components/leaflet/dist/leaflet",
"leaflet.label": "../bower_components/Leaflet.label/dist/leaflet.label",
"chroma-js": "../bower_components/chroma-js/chroma.min",
"moment": "../bower_components/moment/min/moment.min",
"moment.de": "../bower_components/moment/locale/de",
"tablesort": "../bower_components/tablesort/src/tablesort",
"d3": "../bower_components/d3/d3.min",
"virtual-dom": "../bower_components/virtual-dom/dist/virtual-dom",
"rbush": "../bower_components/rbush/rbush",
"helper": "utils/helper"
},
shim: {
"leaflet.label": ["leaflet"],
"moment.de": ["moment"],
"tablesort": {
exports: "Tablesort"
}
}
});
require(["main"], function (main) {
main(jsonData);
});