Browse Source

Revert "Use the slow jQuery path to animate scrollTop"

This reverts commit 5f71cf63ce.
pull/781/head
Joe Germuska 10 years ago
parent
commit
c6197210d8
  1. 7
      source/js/Core/Core/VMM.Library.js

7
source/js/Core/Core/VMM.Library.js

@ -422,9 +422,8 @@ if(typeof VMM != 'undefined') {
}
},
// TODO: Consider removing this as it's referenced by one commented line
delay_animate: function(delay, element, duration, ease, att, callback_function) {
if (VMM.Browser.features.css.transitions && !('scrollTop' in _att)) {
if (VMM.Browser.features.css.transitions) {
var _tdd = Math.round((duration/1500)*10)/10,
__duration = _tdd + 's';
@ -473,7 +472,9 @@ if(typeof VMM != 'undefined') {
_att = {opacity: 0}
}
if (VMM.Browser.features.css.transitions && !('scrollTop' in _att)) {
if (VMM.Browser.features.css.transitions) {
var _tdd = Math.round((_duration/1500)*10)/10,
__duration = _tdd + 's';

Loading…
Cancel
Save