Skip to content

Commit

Permalink
Declared paintInterval variable that was causing javascript error on …
Browse files Browse the repository at this point in the history
…Chrome
  • Loading branch information
Peter Hayes committed Mar 18, 2013
1 parent 47502a7 commit 3aae321
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/webapp/walldisplay.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -801,6 +801,9 @@


var jenkinsUpdateInterval = getParameterByName("jenkinsUpdateInterval", 20000); var jenkinsUpdateInterval = getParameterByName("jenkinsUpdateInterval", 20000);
var lastJenkinsUpdateInterval = jenkinsUpdateInterval; var lastJenkinsUpdateInterval = jenkinsUpdateInterval;

var paintInterval = getParameterByName("jenkinsPaintInterval", 100);
var lastPaintInterval = paintInterval;


var jenkinsUrl = getParameterByName("jenkinsUrl", window.location.protocol + "://" + window.location.host + "/" + window.location.pathname.replace("plugin/jenkinswalldisplay/walldisplay.html", "")); var jenkinsUrl = getParameterByName("jenkinsUrl", window.location.protocol + "://" + window.location.host + "/" + window.location.pathname.replace("plugin/jenkinswalldisplay/walldisplay.html", ""));
var viewName = getParameterByName("viewName", "All"); var viewName = getParameterByName("viewName", "All");
Expand Down

0 comments on commit 3aae321

Please sign in to comment.