diff --git a/htdocs/frontend/index.html b/htdocs/frontend/index.html index 84d76e2..8db956d 100644 --- a/htdocs/frontend/index.html +++ b/htdocs/frontend/index.html @@ -126,29 +126,29 @@
- + + + + +

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.

-

- -
+ + + + + + + + + +
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