Files
nairobi/app/assets/javascripts/stats.js.coffee
Javi Martín 1cc3324468 Use each and forEach instead of for .. in
We're planning to replace CoffeeScript with JavaScript, and CoffeeScript
compiles `for .. in` to complex JavaScript code.
2019-09-11 03:14:16 +02:00

12 lines
387 B
CoffeeScript

# Helper for generate C3.js graphs
#----------------------------------------------------------------------
buildGraph = (el) ->
url = $(el).data "graph"
conf = bindto: el, data: { x: "x", url: url, mimeType: "json" }, axis: { x: { type: "timeseries", tick: { format: "%Y-%m-%d" } } }
c3.generate conf
App.Stats =
initialize: ->
$("[data-graph]").each -> buildGraph(this)