summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jarmon/jarmon.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jarmon/jarmon.js b/jarmon/jarmon.js
index f3f6e33..bf28d03 100644
--- a/jarmon/jarmon.js
+++ b/jarmon/jarmon.js
@@ -1206,7 +1206,7 @@ jarmon.buildTabbedChartUi = function ($chartTemplate, chartRecipes,
);
// Initialise all the charts
- cc.init();
+ cc.update();
return [charts, ti, cc];
};
@@ -1618,9 +1618,10 @@ jarmon.ChartCoordinator.prototype.setTimeRange = function(from, to) {
};
/**
- * Reset all charts and the input form to the default time range.
+ * An alias for {@linkcode jarmon.ChartCoordinator#update .update()}.
*
* @method
+ * @deprecated Use {@linkcode jarmon.ChartCoordinator#update .update()} instead.
**/
jarmon.ChartCoordinator.prototype.init = function() {
this.update();