Plugin Directory

Changeset 538694


Ignore:
Timestamp:
05/01/2012 09:07:26 PM (14 years ago)
Author:
paulgpetty
Message:

fix new jquery bug … $

Location:
wp-time-machine/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-time-machine/trunk/javascript/wp-time-machine.js

    r537553 r538694  
    107107    jQuery("#show_info").click(function (event) {
    108108        event.preventDefault();
    109         $("#Info").toggle();
    110         $(".wpTimeMachineOptions").hide();
     109        jQuery("#Info").toggle();
     110        jQuery(".wpTimeMachineOptions").hide();
    111111    });
    112112
     
    118118    jQuery("#show_options").click(function (event) {
    119119        event.preventDefault();
    120         $(".wpTimeMachineOptions").toggle();
    121         $("#Info").hide();
     120        jQuery(".wpTimeMachineOptions").toggle();
     121        jQuery("#Info").hide();
    122122    });
    123123
  • wp-time-machine/trunk/readme.txt

    r537786 r538694  
    44Requires at least: 2.9.2
    55Tested up to: 3.3.2
    6 Stable tag: 2.0.01
     6Stable tag: 2.0.02
    77
    88== Description ==
  • wp-time-machine/trunk/wp-time-machine.php

    r537786 r538694  
    44Plugin URI: http://wordpress.org/extend/plugins/wp-time-machine/
    55Description: Creates an archive of all your WordPress Data & Files and then stores them on Dropbox, Amazon's S3, or your FTP host.
    6 Version: 2.0.01
     6Version: 2.0.02
    77Author: Paul G Petty
    88Author URI: http://wpTimeMachine.com
     
    1111// wp Time Machine, Version:
    1212
    13     define( 'wpTimeMachineVersion', '2.0.01' );
     13    define( 'wpTimeMachineVersion', '2.0.02' );
    1414
    1515// wp specific definitions:
Note: See TracChangeset for help on using the changeset viewer.