Merge pull request #1080 from thelounge/yamanickill/1042-back-twice

Replace the state on init rather than adding a new entry
This commit is contained in:
Pavel Djundik 2017-04-26 11:16:43 +03:00 committed by GitHub
commit ba20d4f70e
1 changed files with 8 additions and 2 deletions

View File

@ -132,7 +132,9 @@ $(function() {
$("#sign-in").remove();
var id = data.active;
var target = sidebar.find("[data-id='" + id + "']").trigger("click");
var target = sidebar.find("[data-id='" + id + "']").trigger("click", {
replaceHistory: true
});
if (target.length === 0) {
var first = sidebar.find(".chan")
.eq(0)
@ -820,7 +822,11 @@ $(function() {
}
if (history && history.pushState) {
history.pushState(state, null, null);
if (data && data.replaceHistory && history.replaceState) {
history.replaceState(state, null, null);
} else {
history.pushState(state, null, null);
}
}
});