2012-04-06 16:20:52 +00:00
|
|
|
var history_edited = false;
|
2011-12-05 01:54:41 +00:00
|
|
|
|
2012-04-25 10:17:58 +00:00
|
|
|
$('#back_main a.reload').live('click',
|
|
|
|
function () {
|
|
|
|
$.getScript(this.href);
|
|
|
|
history.replaceState(null, document.title, this.href);
|
|
|
|
history_edited = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
);
|
2012-04-06 16:20:52 +00:00
|
|
|
|
2012-05-22 06:45:49 +00:00
|
|
|
$('#back_main form').live('submit', function () {
|
2012-04-25 10:17:58 +00:00
|
|
|
$.post(this.action, $(this).serialize(), null, 'script');
|
|
|
|
history_edited = true;
|
|
|
|
return false;
|
|
|
|
});
|
2012-04-06 16:20:52 +00:00
|
|
|
|
|
|
|
$(document).on('click', '.js_history',
|
|
|
|
function () {
|
|
|
|
$.getScript(this.href);
|
|
|
|
history.pushState(null, document.title, this.href);
|
|
|
|
history_edited = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$(document).on('click', '.pagination a',
|
|
|
|
function () {
|
|
|
|
$.getScript(this.href);
|
|
|
|
history.pushState(null, document.title, this.href);
|
|
|
|
history_edited = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
);
|
2011-12-05 01:54:41 +00:00
|
|
|
|
2012-04-06 16:20:52 +00:00
|
|
|
$(window).bind("popstate", function () {
|
|
|
|
if (history_edited) {
|
|
|
|
$.getScript(location.href);
|
|
|
|
}
|
2011-12-05 01:54:41 +00:00
|
|
|
});
|