added ajaxify popstate cache, so back/forward will just put back the already loaded page
parent
094cd6df32
commit
77d154bb8b
@ -0,0 +1,35 @@
|
|||||||
|
'use strict';
|
||||||
|
/* globals define, app, ajaxify */
|
||||||
|
|
||||||
|
define('ajaxifyCache', function() {
|
||||||
|
var Cache = {
|
||||||
|
url: undefined,
|
||||||
|
DOM: undefined,
|
||||||
|
tempDOM: undefined
|
||||||
|
};
|
||||||
|
|
||||||
|
Cache.set = function() {
|
||||||
|
Cache.DOM = $('#content > *').detach();
|
||||||
|
};
|
||||||
|
|
||||||
|
Cache.get = function(url) {
|
||||||
|
if (url === Cache.url && ajaxify.isPopState) {
|
||||||
|
// Swap DOM elements
|
||||||
|
setTimeout(function() {
|
||||||
|
Cache.tempDOM = $('#content > *').detach();
|
||||||
|
$('#content').append(Cache.DOM);
|
||||||
|
Cache.DOM = Cache.tempDOM;
|
||||||
|
}, 100); // 100ms for realism! :sunglasses:
|
||||||
|
|
||||||
|
// Set the values that normally get set on ajaxify
|
||||||
|
Cache.url = ajaxify.currentPage;
|
||||||
|
ajaxify.currentPage = url;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return Cache;
|
||||||
|
});
|
Loading…
Reference in New Issue