17 lines
430 B
JavaScript
17 lines
430 B
JavaScript
jQuery(document).ready(
|
|
function () {
|
|
var hash = window.location.hash.replace(/^#/, '');
|
|
|
|
if (hash) {
|
|
jQuery('#main-frame').attr('src', hash);
|
|
|
|
if (history.pushState) {
|
|
history.pushState(
|
|
'',
|
|
document.title,
|
|
window.location.pathname + window.location.search
|
|
);
|
|
}
|
|
}
|
|
}
|
|
);
|