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: rstacruz/jquery.transit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: gunta/jquery.transit
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.
  • 13 commits
  • 3 files changed
  • 4 contributors

Commits on May 14, 2012

  1. Configuration menu
    Copy the full SHA
    72da348 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6b4860b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8226d6a View commit details
    Browse the repository at this point in the history

Commits on May 15, 2012

  1. Configuration menu
    Copy the full SHA
    5deac49 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9ca52f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c36202d View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2012

  1. jQuery 1.8 now automatically prefixes certain properties (like transf…

    …orm). Namespace the transit transform property, so it doesn't conflict.
    cheald committed Aug 10, 2012
    Configuration menu
    Copy the full SHA
    9982063 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2012

  1. Fix transitions under jQuery 1.8. Add minimal test cases. Improve the…

    … performance of a few loops by using straight for loops rather than jQuery each iterators. Remove the transformOrigin and transition CSS hooks when using jQuery 1.8+, as jQuery now does those natively. Renamed the tranform hook to transit:transform to diaambiguate it from the browser's transform property, which fixes the issues from my previous patch.
    cheald committed Aug 12, 2012
    Configuration menu
    Copy the full SHA
    b4684ae View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2012

  1. multiple transition() on one element with no queue

    The problem was that on every transition() call, the css property "transition" got overwritten.
    
    for example:
    
    $(elm).transition({ opacity: 1, duration: 400, easing: 'ease', queue: false })
    $(elm).transition({ rotate: 30, duration: 300, easing: 'in', queue: false })
    
    would result in element css: "transition: rotate 300 ease-in"
    
    i now merge the properties to generate the css: "transition: opacity 400ms ease, rotate 300ms ease-in"
    
    also "unmerge" function allows to remove a property from the string (the whole string used to be cleared) when finished transitioning.
    
    this also allows for the hardcoded "transition" properties on the element to be maintained, if we are transitioning some other property.
    annam committed Aug 29, 2012
    Configuration menu
    Copy the full SHA
    304cde2 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2012

  1. Merge remote-tracking branch 'chealdver/master'

    Conflicts:
    	jquery.transit.js
    OK
    gunta committed Sep 20, 2012
    Configuration menu
    Copy the full SHA
    87d1ce5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58ac74a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c1a0d3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e78fd92 View commit details
    Browse the repository at this point in the history
Loading