2012-04-06 16:20:52 +00:00
|
|
|
var history_edited = false;
|
2011-12-05 01:54:41 +00:00
|
|
|
|
2012-04-13 07:53:25 +00:00
|
|
|
// $('#back_sidebar a, #back_main a.nav').live('click',
|
|
|
|
// 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-13 07:53:25 +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-04-13 07:53:25 +00:00
|
|
|
// $('.form').live('submit', function () {
|
|
|
|
// $.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
|
|
|
});
|