Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions jquery.transit.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"use strict";

$.transit = {
version: "0.1.3",
version: "0.1.3-fork-ThomasR",

// Map of $.css() keys to values for 'transitionProperty'.
// See https://developer.mozilla.org/en/CSS/CSS_transitions#Properties_that_can_be_animated
Expand All @@ -30,7 +30,7 @@
enabled: true,

// Set this to false if you don't want to use the transition end property.
useTransitionEnd: false
useTransitionEnd: true
};

var div = document.createElement('div');
Expand Down Expand Up @@ -73,6 +73,7 @@
$.extend($.support, support);

var eventNames = {
'transition': 'transitionend',
'MozTransition': 'transitionend',
'OTransition': 'oTransitionEnd',
'WebkitTransition': 'webkitTransitionEnd',
Expand Down Expand Up @@ -150,7 +151,7 @@
// ## 'transition' CSS hook
// Allows you to use the `transition` property in CSS.
//
// $("#hello").css({ transition: 'all 0 ease 0' });
// $("#hello").css({ transition: 'all 0 ease 0' });
//
$.cssHooks.transition = {
get: function(elem) {
Expand Down