From: Joey Hess Date: Wed, 13 May 2015 16:36:38 +0000 (-0400) Subject: promote the other/password item to a large button X-Git-Tag: 3.20150610~82 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/1b79ccc71bf4486b3b2d831c8e2e209af81fb582 promote the other/password item to a large button --- diff --git a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js index 448d20d74..6965295be 100644 --- a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js +++ b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js @@ -80,15 +80,6 @@ var openid = { for (id in providers_large) { openid_btns.append(this.getBoxHTML(providers_large[id], 'large')); } - - if (providers_small) { - openid_btns.append('
'); - - for (id in providers_small) { - - openid_btns.append(this.getBoxHTML(providers_small[id], 'small')); - } - } if (localsignin_label != "") { this.localsignin_label=localsignin_label; } @@ -100,13 +91,22 @@ var openid = { openid_btns.append( '' + + 'class="localsignin openid_large_btn">' + '' + ' ' + this.localsignin_label + '' ); $('#'+this.localsignin_id).hide(); } + + if (providers_small) { + openid_btns.append('
'); + + for (id in providers_small) { + + openid_btns.append(this.getBoxHTML(providers_small[id], 'small')); + } + } $('#openid_form').submit(this.submit);