Browse Source

Run `grunt dist`.

pull/591/head
XhmikosR 11 years ago
parent
commit
40bf8114e3
  1. 7
      dist/js/ratchet.js
  2. 2
      dist/js/ratchet.min.js
  3. 7
      docs/dist/js/ratchet.js
  4. 2
      docs/dist/js/ratchet.min.js

7
dist/js/ratchet.js vendored

@ -161,9 +161,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'
};
@ -378,7 +379,7 @@
url : window.location.href,
title : document.title,
timeout : options.timeout,
transition : null
transition : options.transition
});
}

2
dist/js/ratchet.min.js vendored

File diff suppressed because one or more lines are too long

7
docs/dist/js/ratchet.js vendored

@ -161,9 +161,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'
};
@ -378,7 +379,7 @@
url : window.location.href,
title : document.title,
timeout : options.timeout,
transition : null
transition : options.transition
});
}

2
docs/dist/js/ratchet.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save