Browse Source

Fixes #409 dropdown does not contain easing definition for fallback js animation

pull/444/head
jlukic 10 years ago
parent
commit
716176f85e
1 changed files with 8 additions and 0 deletions
  1. 8
      src/modules/dropdown.js

8
src/modules/dropdown.js

@ -836,4 +836,12 @@ $.fn.dropdown.settings = {
};
// Adds easing
$.extend( $.easing, {
easeOutQuad: function (x, t, b, c, d) {
return -c *(t/=d)*(t-2) + b;
},
});
})( jQuery, window , document );
Loading…
Cancel
Save