[TASK] Remove tablesort number
No complex different styled numbers need to be sorted
This commit is contained in:
parent
e32fe6648d
commit
a627e2febc
6
app.js
6
app.js
|
@ -7,8 +7,7 @@ require.config({
|
||||||
"chroma-js": "../bower_components/chroma-js/chroma.min",
|
"chroma-js": "../bower_components/chroma-js/chroma.min",
|
||||||
"moment": "../bower_components/moment/min/moment.min",
|
"moment": "../bower_components/moment/min/moment.min",
|
||||||
"moment.de": "../bower_components/moment/locale/de",
|
"moment.de": "../bower_components/moment/locale/de",
|
||||||
"tablesort": "../bower_components/tablesort/tablesort.min",
|
"tablesort": "../bower_components/tablesort/src/tablesort",
|
||||||
"tablesort.number": "../bower_components/tablesort/src/sorts/tablesort.number",
|
|
||||||
"d3": "../bower_components/d3/d3.min",
|
"d3": "../bower_components/d3/d3.min",
|
||||||
"virtual-dom": "../bower_components/virtual-dom/dist/virtual-dom",
|
"virtual-dom": "../bower_components/virtual-dom/dist/virtual-dom",
|
||||||
"rbush": "../bower_components/rbush/rbush",
|
"rbush": "../bower_components/rbush/rbush",
|
||||||
|
@ -20,8 +19,7 @@ require.config({
|
||||||
"moment.de": ["moment"],
|
"moment.de": ["moment"],
|
||||||
"tablesort": {
|
"tablesort": {
|
||||||
exports: "Tablesort"
|
exports: "Tablesort"
|
||||||
},
|
}
|
||||||
"tablesort.number": ["tablesort"]
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
define(["moment", "tablesort", "tablesort.number", "moment.de"],
|
define(["moment", "tablesort", "moment.de"],
|
||||||
function (moment, Tablesort) {
|
function (moment, Tablesort) {
|
||||||
function showGeoURI(d) {
|
function showGeoURI(d) {
|
||||||
function showLatitude(d) {
|
function showLatitude(d) {
|
||||||
|
|
Loading…
Reference in a new issue