Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
14 lines
401 B
CoffeeScript
14 lines
401 B
CoffeeScript
"use strict"
|
|
|
|
# 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)
|