Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jquery/jquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: dcneiner/jquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 7, 2010

  1. Added support for slideToggle to take an optional state parameter

    By adding the state parameter, slideToggle can now be called in
    the following ways:
    
        slideToggle();
        slideToggle(speed);
        slideToggle(state);
        slideToggle(callback);
        slideToggle(speed,callback);
        slideToggle(state,callback);
        slideToggle(speed,state,callback);
    
    If `state` is `true` then `slideDown` is called.
    If `state` is `false` then `slideUp` is called.
    If `state` is not a boolean, then the original `slideToggle`
    is called. (It was moved to `_slideToggle`)
    Doug Neiner authored and Doug Neiner committed Mar 7, 2010
    Configuration menu
    Copy the full SHA
    bfbb04c View commit details
    Browse the repository at this point in the history

Commits on May 24, 2010

  1. Configuration menu
    Copy the full SHA
    1b53814 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2010

  1. Updated Rakefile to mirror the functionality of the Makefile

    The Rakefile now supports all the functionality of the Makefile
    including only rebuilding files when dependent files change.
    
    To see availible tasks, run:
    
        rake -T
    dcneiner committed Jun 13, 2010
    Configuration menu
    Copy the full SHA
    60658f7 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2010

  1. Updated Rakefile to remove use of *nix specific commands

    Only `sh` statements left are either 'java' or 'git' commands,
    which should work on Windows, though I still need to test
    dcneiner committed Jun 14, 2010
    Configuration menu
    Copy the full SHA
    7957131 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc661f0 View commit details
    Browse the repository at this point in the history
  3. Updated README file with updated information for the Rake addtions

    Also changed the default Rake task to "all" instead of "jquery"
    to parallel the Makefile.
    dcneiner committed Jun 14, 2010
    Configuration menu
    Copy the full SHA
    5cda32b View commit details
    Browse the repository at this point in the history
  4. Minor changes to README

    dcneiner committed Jun 14, 2010
    Configuration menu
    Copy the full SHA
    3d7c07e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    240e487 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ce80e1d View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2010

  1. Configuration menu
    Copy the full SHA
    3c56b68 View commit details
    Browse the repository at this point in the history
  2. Added the ability for hasClass to accept an array of class names inst…

    …ead of just a single string. It returns true if *any* of the classes match
    dcneiner committed Aug 17, 2010
    Configuration menu
    Copy the full SHA
    31d2d3e View commit details
    Browse the repository at this point in the history
Loading