hopglass/app.js

38 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

require.config({
baseUrl: "lib",
paths: {
"leaflet": "../bower_components/leaflet/dist/leaflet",
"leaflet.label": "../bower_components/Leaflet.label/dist/leaflet.label",
2015-04-09 19:45:00 +02:00
"leaflet.providers": "../bower_components/leaflet-providers/leaflet-providers",
"chroma-js": "../bower_components/chroma-js/chroma.min",
"moment": "../bower_components/moment/min/moment-with-locales.min",
"tablesort": "../bower_components/tablesort/tablesort.min",
2015-03-29 04:26:23 +02:00
"tablesort.numeric": "../bower_components/tablesort/src/sorts/tablesort.numeric",
2015-03-31 17:22:36 +02:00
"d3": "../bower_components/d3/d3.min",
"numeral": "../bower_components/numeraljs/min/numeral.min",
"numeral-intl": "../bower_components/numeraljs/min/languages.min",
"virtual-dom": "../bower_components/virtual-dom/dist/virtual-dom",
"rbush": "../bower_components/rbush/rbush",
"helper": "../helper",
"jshashes": "../bower_components/jshashes/hashes",
"c3": "../bower_components/c3/c3.min"
},
shim: {
"leaflet.label": ["leaflet"],
2015-04-09 19:45:00 +02:00
"leaflet.providers": ["leaflet"],
"tablesort": {
exports: "Tablesort"
},
2015-04-02 22:07:00 +02:00
"numeral-intl": {
deps: ["numeral"],
exports: "numeral"
},
2015-03-29 04:26:23 +02:00
"tablesort.numeric": ["tablesort"],
"helper": ["numeral-intl"]
}
})
2015-03-29 04:35:20 +02:00
require(["main", "helper"], function (main) {
getJSON("config.json").then(main)
2015-03-29 04:35:20 +02:00
})