meshviewer/app.js

34 lines
941 B
JavaScript
Raw Normal View History

'use strict';
2017-02-01 21:13:06 +00:00
// Node search polyfill for mobile browsers and IE
if (!String.prototype.includes) {
String.prototype.includes = function () {
return String.prototype.indexOf.apply(this, arguments) !== -1;
};
}
2016-05-27 21:59:01 +00:00
require.config({
baseUrl: 'lib',
paths: {
2017-01-28 14:33:13 +00:00
'polyglot': '../node_modules/node-polyglot/build/polyglot',
'leaflet': '../node_modules/leaflet/dist/leaflet',
'leaflet.label': '../node_modules/leaflet-label/dist/leaflet.label',
'chroma-js': '../node_modules/chroma-js/chroma.min',
2017-01-28 14:33:13 +00:00
'moment': '../node_modules/moment/moment',
'd3': '../node_modules/d3/d3.min',
'virtual-dom': '../node_modules/virtual-dom/dist/virtual-dom',
'rbush': '../node_modules/rbush/rbush',
'helper': 'utils/helper',
'language': 'utils/language'
},
shim: {
'leaflet.label': ['leaflet'],
'tablesort': {
exports: 'Tablesort'
}
}
});
2015-03-29 02:35:20 +00:00
require(['main'], function (main) {
2016-06-01 20:20:14 +00:00
main(jsonData);
});