diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-07 20:17:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-07 20:17:31 -0400 |
commit | 7d152f5be5ab12ef17167c820bfc548ccc68cc80 (patch) | |
tree | cc02b04b514dfa93590179082ecc3ba0ce686e41 | |
parent | f8c2a67b3cdbce81bbb661e05411a129b07414ce (diff) | |
download | ikiwiki-7d152f5be5ab12ef17167c820bfc548ccc68cc80.tar ikiwiki-7d152f5be5ab12ef17167c820bfc548ccc68cc80.tar.gz |
modify openid selector to not default to http:// for openid
ikiwiki doesn't care if the http:// is there, and it seems cleaner and less
annoying this way
-rw-r--r-- | underlays/openid-selector/ikiwiki/openid/openid-jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js index f39fff842..48054f79a 100644 --- a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js +++ b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js @@ -220,7 +220,7 @@ var openid = { } if (provider['name'] == 'OpenID') { id = this.input_id; - value = 'http://'; + value = ''; style = 'background:#FFF url('+this.img_path+'openid-inputicon.gif) no-repeat scroll 0 50%; padding-left:18px;'; } html += '<input id="'+id+'" type="text" style="'+style+'" name="'+id+'" value="'+value+'" />' + |