Plugin Directory

Changeset 701423


Ignore:
Timestamp:
04/22/2013 08:35:31 AM (13 years ago)
Author:
OptimalDevs
Message:

2.3 Update

  • Javascript improved to support wrong themes. ".sexy_login_widget" is no longer used as a handler, instead the plugin uses "#sexy-login-wrap".
Location:
sexy-login
Files:
25 added
4 edited

Legend:

Unmodified
Added
Removed
  • sexy-login/trunk/js/sexy-login.js

    r697763 r701423  
    7979        slTabChange( 'login' );
    8080   
    81     jQuery('a[name=sl-tab-login]').click( function(e) {
     81    jQuery('#sexy-login-wrap a[name=sl-tab-login]').click( function(e) {
    8282       
    8383        e.preventDefault();
     
    8686    });
    8787   
    88     jQuery('a[name=sl-tab-lostpwd]').click( function(e) {
     88    jQuery('#sexy-login-wrap a[name=sl-tab-lostpwd]').click( function(e) {
    8989       
    9090        e.preventDefault();
     
    9393    });
    9494   
    95     jQuery('a[name=sl-tab-registration]').click( function(e) {
     95    jQuery('#sexy-login-wrap a[name=sl-tab-registration]').click( function(e) {
    9696       
    9797        e.preventDefault();
     
    100100    });
    101101
    102     jQuery('.sexy_login_widget #sl-login-form').submit( function( e ) {
     102    jQuery('#sexy-login-wrap #sl-login-form').submit( function( e ) {
    103103               
    104104        e.preventDefault();
     
    159159    }); // END sl-login-form submit.
    160160   
    161     jQuery('.sexy_login_widget #sl-registration-form').submit( function( e ) {
     161    jQuery('#sexy-login-wrap #sl-registration-form').submit( function( e ) {
    162162               
    163163        e.preventDefault();
     
    210210    }); // END sl-registration-form
    211211   
    212     jQuery('.sexy_login_widget #sl-lostpwd-form').submit( function( e ) {
     212    jQuery('#sexy-login-wrap #sl-lostpwd-form').submit( function( e ) {
    213213               
    214214        e.preventDefault();
  • sexy-login/trunk/readme.txt

    r697763 r701423  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.2
     7Stable tag: 2.3
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    6363== Changelog ==
    6464
     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
    6568= 2.2 =
    6669* Registration form is optional.
  • sexy-login/trunk/sexy-login-init.php

    r697763 r701423  
    44Plugin URI: http://wordpress.org/extend/plugins/sexy-login/
    55Description: The sexiest login widget for Wordpress!
    6 Version: 2.2
     6Version: 2.3
    77Author: OptimalDevs
    88Author URI: http://optimaldevs.com/
  • sexy-login/trunk/sl-config.php

    r697763 r701423  
    77define( 'SL_LOGIN_ATTEMPTS_LAPSE', 10 );
    88define( 'SL_LOSTPWD_TIME_LAPSE', 10 );
    9 define( 'SL_VERSION', '2.2' );
     9define( 'SL_VERSION', '2.3' );
    1010define( 'SL_PLUGIN_ROOT_URL', plugin_dir_url( __FILE__ ) );
    1111
Note: See TracChangeset for help on using the changeset viewer.