diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-29 16:57:20 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-29 16:57:20 -0700 |
commit | 7232aaceb87d34e4538354c840adb46afd07bfc7 (patch) | |
tree | da40c60963c3e4bbcffbef7459d64b8d9f3eb681 /src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js | |
parent | e0101d0c3f578b2e12e96c03740102634aa96289 (diff) | |
download | DotNetOpenAuth-7232aaceb87d34e4538354c840adb46afd07bfc7.zip DotNetOpenAuth-7232aaceb87d34e4538354c840adb46afd07bfc7.tar.gz DotNetOpenAuth-7232aaceb87d34e4538354c840adb46afd07bfc7.tar.bz2 |
Touching up API and documentation.
Diffstat (limited to 'src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js')
-rw-r--r-- | src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js b/src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js index 320572c..9dc980f 100644 --- a/src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js +++ b/src/DotNetOpenId/RelyingParty/OpenIdAjaxTextBox.js @@ -195,9 +195,9 @@ function initAjaxOpenId(box, dotnetopenid_logo_url, spinner_url, timeout, assert function createHiddenFrame(url) {
var iframe = document.createElement("iframe");
- iframe.setAttribute("width", 0);
- iframe.setAttribute("height", 0);
- iframe.setAttribute("style", "display: none");
+// iframe.setAttribute("width", 0);
+// iframe.setAttribute("height", 0);
+// iframe.setAttribute("style", "display: none");
iframe.setAttribute("src", url);
iframe.openidBox = box;
box.parentNode.insertBefore(iframe, box);
|