Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
PayBas committed Oct 14, 2014
1 parent 8f368e8 commit c687cf9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Extension for phpBB 3.1 that adds a simple quick login popup lightbox using Java
- Only activates on pages where there is no normal login form (not when trying to access the UCP for example).

#### Requirements
- phpBB 3.1-RC2 or higher
- phpBB 3.1-RC5 or higher
- PHP 5.3.3 or higher

#### Languages supported
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "Adds a simple quick login popup lightbox using JavaScript",
"homepage": "http://paybas.com/",
"version": "1.0.2",
"time": "2014-06-27",
"version": "1.0.3",
"time": "2014-10-14",
"license": "GPL-2.0",
"authors": [
{
Expand Down
10 changes: 5 additions & 5 deletions styles/all/template/quick_login.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="content">
<a href="#" class="close"></a>
<h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED -->&nbsp; &bull; &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>

<fieldset>
<dl class="ql-username">
<dt><label for="ql-username">{L_USERNAME}{L_COLON}</label></dt>
Expand All @@ -21,12 +21,12 @@ <h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF not S_ADMIN_AUTH and
<!-- INCLUDE {CAPTCHA_TEMPLATE} -->
<!-- ENDIF -->
</fieldset>

<fieldset class="ql-options">
<!-- IF S_AUTOLOGIN_ENABLED --><label for="ql-autologin"><input type="checkbox" name="autologin" id="ql-autologin" tabindex="4" /><span>{L_LOG_ME_IN}</span></label><br /><!-- ENDIF -->
<label for="ql-viewonline"><input type="checkbox" name="viewonline" id="ql-viewonline" tabindex="5" /><span>{L_HIDE_ME}</span></label>
</fieldset>

<fieldset class="submit-buttons">
<input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" />
{S_LOGIN_REDIRECT}{S_HIDDEN_FIELDS}
Expand All @@ -52,8 +52,8 @@ <h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF not S_ADMIN_AUTH and
e.preventDefault();
$(ql_bg + ', ' + ql_pnl).fadeIn(300);
});
$(ql_bg + ', #quick-login-panel .close').click(function () {
$(ql_bg + ', ' + ql_pnl).fadeOut(300);
$(ql_bg + ', #quick-login-panel .close').click(function () {
$(ql_bg + ', ' + ql_pnl).fadeOut(300);
})
});
})(jQuery);
Expand Down

0 comments on commit c687cf9

Please sign in to comment.