diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2014-09-09 23:18:27 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2014-09-09 23:18:27 +0200 |
commit | 887be010bf1aa13580a36e6829b5690e03abfe9a (patch) | |
tree | db7b7b079a1aa6587da4e6cb0d687e7ccd091934 /static/js | |
parent | 86b2aeee83803adc2911252b2fb5cca7bbdbd34d (diff) | |
download | kosten-887be010bf1aa13580a36e6829b5690e03abfe9a.tar.gz kosten-887be010bf1aa13580a36e6829b5690e03abfe9a.tar.bz2 kosten-887be010bf1aa13580a36e6829b5690e03abfe9a.zip |
[stats] %d -> %m ... m(
Diffstat (limited to 'static/js')
-rw-r--r-- | static/js/kosten.js | 2 | ||||
-rw-r--r-- | static/js/kosten.ls | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/static/js/kosten.js b/static/js/kosten.js index eea79dc..41bf30f 100644 --- a/static/js/kosten.js +++ b/static/js/kosten.js @@ -103,7 +103,7 @@ var df, time; df = Highcharts.dateFormat; time = this.x; - $.get(df('/stats/_const/%Y/%d', time), function(data){ + $.get(df('/stats/_const/%Y/%m', time), function(data){ $(data).dialog({ title: df('%B %Y', time) }); diff --git a/static/js/kosten.ls b/static/js/kosten.ls index 3327ff3..5362fb3 100644 --- a/static/js/kosten.ls +++ b/static/js/kosten.ls @@ -80,7 +80,7 @@ export statJS = jq !-> df = Highcharts.date-format time = @x - data <-! $.get df '/stats/_const/%Y/%d' time + data <-! $.get df '/stats/_const/%Y/%m' time $ data .dialog do title: df '%B %Y' time |