From 9605e5c6b025901592dc8cb996d1b03736239477 Mon Sep 17 00:00:00 2001 From: jos Date: Tue, 10 Nov 2015 15:26:16 +0100 Subject: [PATCH] Fixed warning message --- lib/timeline/component/CurrentTime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timeline/component/CurrentTime.js b/lib/timeline/component/CurrentTime.js index c9479c52..d23ba377 100644 --- a/lib/timeline/component/CurrentTime.js +++ b/lib/timeline/component/CurrentTime.js @@ -91,7 +91,7 @@ CurrentTime.prototype.redraw = function() { var locale = this.options.locales[this.options.locale]; if (!locale) { if (!this.warned) { - console.log('WARNING: options.locales[\'' + this.options.locale + '\'] not found. See http://visjs.org/docs/timeline.html#Localization'); + console.log('WARNING: options.locales[\'' + this.options.locale + '\'] not found. See http://visjs.org/docs/timeline/#Localization'); this.warned = true; } locale = this.options.locales['en']; // fall back on english when not available