diff --git a/resources/static/shared/modules/development.js b/resources/static/shared/modules/development.js index 44257c215cba524d61e72f5eea35d2b7ddcb10f3..5c676960ac8b580463109857f3a80691321d9bd9 100644 --- a/resources/static/shared/modules/development.js +++ b/resources/static/shared/modules/development.js @@ -22,17 +22,17 @@ BrowserID.Modules.Development = (function() { if(clickCount === 4) { if(!document.getElementById("development")) { renderer.append("body", "development", {}); + this.click("#showError", showError); + this.click("#showDelay", showDelay); + this.click("#showWait", showWait); + this.click("#hideAll,footer,#errorBackground", hideScreens); + this.click("#clearLocalStorage", clearLocalStorage); + this.click("#clearEmailsForSites", clearEmailsForSites); + this.click("#forceIsThisYourComputer", forceIsThisYourComputer); + this.click("#closeDevelopment", close); } dom.addClass("body", "development"); - this.click("#showError", showError); - this.click("#showDelay", showDelay); - this.click("#showWait", showWait); - this.click("#hideAll,footer,#errorBackground", hideScreens); - this.click("#clearLocalStorage", clearLocalStorage); - this.click("#clearEmailsForSites", clearEmailsForSites); - this.click("#forceIsThisYourComputer", forceIsThisYourComputer); - this.click("#closeDevelopment", close); } }