COPS now also work if Pushstate / ReplaceState is not available (IE9). Thanks to At Libitum. should fix #117
This commit is contained in:
parent
d12c7e9086
commit
1051af4a61
|
@ -101,7 +101,9 @@
|
|||
|
||||
updatePage (data [0]);
|
||||
cache.put (url, data [0]);
|
||||
history.replaceState(url, "", window.location);
|
||||
if (isPushStateEnabled) {
|
||||
history.replaceState(url, "", window.location);
|
||||
}
|
||||
handleLinks ();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue