Changeset 701423
- Timestamp:
- 04/22/2013 08:35:31 AM (13 years ago)
- Location:
- sexy-login
- Files:
-
- 25 added
- 4 edited
-
tags/2.2 (added)
-
tags/2.2/img (added)
-
tags/2.2/img/ajax-loader.gif (added)
-
tags/2.2/inc (added)
-
tags/2.2/inc/activation.php (added)
-
tags/2.2/inc/admin (added)
-
tags/2.2/inc/admin/class-sexy-login-admin.php (added)
-
tags/2.2/inc/ajax.php (added)
-
tags/2.2/inc/class-sexy-login-attempts.php (added)
-
tags/2.2/inc/class-sexy-login-widget.php (added)
-
tags/2.2/inc/lib (added)
-
tags/2.2/inc/lib/recaptchalib.php (added)
-
tags/2.2/js (added)
-
tags/2.2/js/admin.js (added)
-
tags/2.2/js/jquery.blockUI.js (added)
-
tags/2.2/js/sexy-login.js (added)
-
tags/2.2/lang (added)
-
tags/2.2/lang/sl-domain-es_ES.mo (added)
-
tags/2.2/lang/sl-domain-es_ES.po (added)
-
tags/2.2/readme.txt (added)
-
tags/2.2/screenshot-1.png (added)
-
tags/2.2/sexy-login-init.php (added)
-
tags/2.2/sl-config.php (added)
-
tags/2.2/style.css (added)
-
tags/2.2/uninstall.php (added)
-
trunk/js/sexy-login.js (modified) (6 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sexy-login-init.php (modified) (1 diff)
-
trunk/sl-config.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sexy-login/trunk/js/sexy-login.js
r697763 r701423 79 79 slTabChange( 'login' ); 80 80 81 jQuery(' a[name=sl-tab-login]').click( function(e) {81 jQuery('#sexy-login-wrap a[name=sl-tab-login]').click( function(e) { 82 82 83 83 e.preventDefault(); … … 86 86 }); 87 87 88 jQuery(' a[name=sl-tab-lostpwd]').click( function(e) {88 jQuery('#sexy-login-wrap a[name=sl-tab-lostpwd]').click( function(e) { 89 89 90 90 e.preventDefault(); … … 93 93 }); 94 94 95 jQuery(' a[name=sl-tab-registration]').click( function(e) {95 jQuery('#sexy-login-wrap a[name=sl-tab-registration]').click( function(e) { 96 96 97 97 e.preventDefault(); … … 100 100 }); 101 101 102 jQuery(' .sexy_login_widget#sl-login-form').submit( function( e ) {102 jQuery('#sexy-login-wrap #sl-login-form').submit( function( e ) { 103 103 104 104 e.preventDefault(); … … 159 159 }); // END sl-login-form submit. 160 160 161 jQuery(' .sexy_login_widget#sl-registration-form').submit( function( e ) {161 jQuery('#sexy-login-wrap #sl-registration-form').submit( function( e ) { 162 162 163 163 e.preventDefault(); … … 210 210 }); // END sl-registration-form 211 211 212 jQuery(' .sexy_login_widget#sl-lostpwd-form').submit( function( e ) {212 jQuery('#sexy-login-wrap #sl-lostpwd-form').submit( function( e ) { 213 213 214 214 e.preventDefault(); -
sexy-login/trunk/readme.txt
r697763 r701423 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.1 7 Stable tag: 2. 27 Stable tag: 2.3 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 63 63 == Changelog == 64 64 65 = 2.3 = 66 * Javascript improved to support wrong themes. ".sexy_login_widget" is no longer used as a handler, instead the plugin uses "#sexy-login-wrap". 67 65 68 = 2.2 = 66 69 * Registration form is optional. -
sexy-login/trunk/sexy-login-init.php
r697763 r701423 4 4 Plugin URI: http://wordpress.org/extend/plugins/sexy-login/ 5 5 Description: The sexiest login widget for Wordpress! 6 Version: 2. 26 Version: 2.3 7 7 Author: OptimalDevs 8 8 Author URI: http://optimaldevs.com/ -
sexy-login/trunk/sl-config.php
r697763 r701423 7 7 define( 'SL_LOGIN_ATTEMPTS_LAPSE', 10 ); 8 8 define( 'SL_LOSTPWD_TIME_LAPSE', 10 ); 9 define( 'SL_VERSION', '2. 2' );9 define( 'SL_VERSION', '2.3' ); 10 10 define( 'SL_PLUGIN_ROOT_URL', plugin_dir_url( __FILE__ ) ); 11 11
Note: See TracChangeset
for help on using the changeset viewer.