Browse Source

Merge pull request #557 from artemave/patch-1

Animated transition on `window.history.back()`
pull/577/head
XhmikosR 11 years ago
parent
commit
7187e60bd8
  1. 7
      js/push.js

7
js/push.js

@ -22,9 +22,10 @@
var maxCacheLength = 20;
var cacheMapping = sessionStorage;
var domCache = {};
// Change these to unquoted camelcase in the next major version bump
var transitionMap = {
slideIn : 'slide-out',
slideOut : 'slide-in',
'slide-in' : 'slide-out',
'slide-out' : 'slide-in',
fade : 'fade'
};
@ -239,7 +240,7 @@
url : window.location.href,
title : document.title,
timeout : options.timeout,
transition : null
transition : options.transition
});
}

Loading…
Cancel
Save