From 91b7e6e2a1d8f2711951cb7605357830d1246b5c Mon Sep 17 00:00:00 2001 From: Brian Warner <warner@lothar.com> Date: Mon, 21 May 2012 21:54:51 -0700 Subject: [PATCH] dialog.js: oops, 'var'ify that accidental global --- resources/static/dialog/controllers/dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/static/dialog/controllers/dialog.js b/resources/static/dialog/controllers/dialog.js index 0e369ee4f..febe54823 100644 --- a/resources/static/dialog/controllers/dialog.js +++ b/resources/static/dialog/controllers/dialog.js @@ -127,7 +127,7 @@ BrowserID.Modules.Dialog = (function() { // rely upon the RP to do that. In particular we must guard against // these strings containing <script> tags. We will populate a new // object ("params") with suitably type-checked properties. - params = {}; + var params = {}; params.hostname = user.getHostname(); // verify params -- GitLab