summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBlueRaja <BlueRaja.admin@gmail.com>2013-06-01 20:10:36 -0500
committerBlueRaja <BlueRaja.admin@gmail.com>2013-06-01 20:10:36 -0500
commit951330c9f83c8c8ee98f65fdccb5797e2e59d1f3 (patch)
treefc7b196ca0d91c1c71dcd945aa9667c7af0134fa /js
parente58a3b8b3702b22c903b02a9b4fa1020d6797459 (diff)
downloadpathery-951330c9f83c8c8ee98f65fdccb5797e2e59d1f3.tar.xz
A partial commit of the auth stuff, in case my upcoming changes break anything
Diffstat (limited to 'js')
-rw-r--r--js/globe.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/js/globe.js b/js/globe.js
index 152ad71..1dc61a0 100644
--- a/js/globe.js
+++ b/js/globe.js
@@ -9,22 +9,6 @@ function hideSignin() {
}
}
-function createSignin() {
- var div = document.createElement('div');
- var content = '<div class="wrapper" id="oid_hidden" >';
- content += ' <h2>Sign in</h2>';
- content += ' <div id="oid_box">';
- content += ' <h2 style="color:#333;">Do you have an account here?</h2>';
- content += ' <a rel="nofollow" href="login?op=google"><img id="oid_btn" src="images/btns/signin_Google.png" alt="Sign in with Google" /></a>';
- content += ' <a rel="nofollow" href="login?op=yahoo"><img id="oid_btn" src="images/btns/signin_Yahoo.png" alt="Sign in with Yahoo" /></a>';
- content += ' <a id="oid_learn" href="http://openid.net/get-an-openid/what-is-openid/" target="_blank" >Learn more about OpenID</a>';
- content += ' <a id="oid_cancel" href="javascript:hideSignin();">X</a>';
- content += ' </div>';
- content += '</div>';
- div.innerHTML = content;
- document.body.appendChild(div.firstChild);
-}
-
//Make unselectable elements unselectable (hack for IE 9.0 and below, which doesn't support our CSS)
$(document).ready(function()
{