From dc10346875e5cca5426941084f26f412a35430ff Mon Sep 17 00:00:00 2001 From: Justin Otherguy Date: Sun, 16 Jan 2011 23:16:17 +0100 Subject: [PATCH 1/3] removed unused options (for now - we'll reenable them once they're implemented) --- htdocs/frontend/index.html | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/htdocs/frontend/index.html b/htdocs/frontend/index.html index 48b1b2e..4709868 100644 --- a/htdocs/frontend/index.html +++ b/htdocs/frontend/index.html @@ -123,26 +123,26 @@
- + + + + +

Hier können Sie einen existierenden Kanal über seine UUID hinzufügen

-
-

Hier können Sie einen neuen Kanal erstellen

-

- -
-
-

Hier können Sie demnächst öffentliche Kanäle abonnieren.

-

- -
+ + + + + + + + + +
From 57a5447b506fe789f243f89d2dc15f93e7c7067d Mon Sep 17 00:00:00 2001 From: Justin Otherguy Date: Sun, 16 Jan 2011 23:42:13 +0100 Subject: [PATCH 2/3] disabled option for setting a cookie (until the function behind it is implemented) --- htdocs/frontend/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/frontend/index.html b/htdocs/frontend/index.html index 732c30b..8db956d 100644 --- a/htdocs/frontend/index.html +++ b/htdocs/frontend/index.html @@ -135,7 +135,7 @@

Hier können Sie einen existierenden Kanal über seine UUID hinzufügen

- +
From 03848bee366eecc7cb3c6f1f4a9d09eee25cff1a Mon Sep 17 00:00:00 2001 From: Justin Otherguy Date: Tue, 18 Jan 2011 00:41:43 +0100 Subject: [PATCH 3/3] fixes #44 --- htdocs/frontend/javascripts/frontend.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/frontend/javascripts/frontend.js b/htdocs/frontend/javascripts/frontend.js index b03d3f5..cc566be 100644 --- a/htdocs/frontend/javascripts/frontend.js +++ b/htdocs/frontend/javascripts/frontend.js @@ -138,7 +138,7 @@ vz.wui.initEvents = function() { .bind("plotselected", function (event, ranges) { vz.options.plot.xaxis.min = ranges.xaxis.from; vz.options.plot.xaxis.max = ranges.xaxis.to; - vz.options.plot.yaxis.min = 0; + vz.options.plot.yaxis.min = null; // autoscaling for neg. values as well vz.options.plot.yaxis.max = null; // autoscaling vz.entities.loadData(); }) @@ -235,7 +235,7 @@ vz.wui.handleControls = function () { } // reenable autoscaling for yaxis - vz.options.plot.yaxis.min = 0; + vz.options.plot.yaxis.min = null; vz.options.plot.yaxis.max = null; // we dont want to zoom/pan into the future