1
0
Fork 0

fixed dashboard interval bug

This commit is contained in:
Heiko Kernbach 2013-08-16 18:07:55 +02:00
parent 50de3b857e
commit fbc4e7e2ca
2 changed files with 2 additions and 3 deletions

View File

@ -11,8 +11,8 @@
<div id="dashboardDropdownOut">
<div id="dashboardDropdown">
<ul>
<li class="nav-header" id="intervalUL">Update every:</li>
<ul id="intervalUL">
<li class="nav-header">Update every:</li>
<li><a><label class="radio"><input type="radio" name="updateInterval" id="every10seconds" value="10"><label><span></span>5 seconds</label></label></a></li>
<li><a><label class="radio"><input type="radio" name="updateInterval" id="every15seconds" value="15"><label><span></span>15 seconds</label></label></a></li>
<li><a><label class="radio"><input type="radio" name="updateInterval" id="every30seconds" value="30"><label><span></span>30 seconds</label></label></a></li>

View File

@ -302,7 +302,6 @@ var dashboardView = Backbone.View.extend({
checkInterval: function (a) {
this.updateFrequency = a.target.value;
console.log(a);
this.calculateSeries();
this.renderCharts();
},