summaryrefslogtreecommitdiff
path: root/web-ui/app/js/page/router.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/page/router.js')
-rw-r--r--web-ui/app/js/page/router.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/web-ui/app/js/page/router.js b/web-ui/app/js/page/router.js
index 3de2bba9..ce0d7d04 100644
--- a/web-ui/app/js/page/router.js
+++ b/web-ui/app/js/page/router.js
@@ -34,6 +34,7 @@ define(['flight/lib/component', 'page/events', 'page/router/url_params'], functi
return {
tag: data.tag || (previousState && previousState.tag) || urlParams.defaultTag(),
mailIdent: data.mailIdent,
+ query: data.query,
isDisplayNoMessageSelected: !!data.isDisplayNoMessageSelected
};
}
@@ -61,6 +62,9 @@ define(['flight/lib/component', 'page/events', 'page/router/url_params'], functi
this.after('initialize', function () {
this.on(document, events.router.pushState, this.pushState);
+ this.on(document, events.ui.tag.select, this.pushState);
+ this.on(document, events.search.perform, this.pushState);
+ this.on(document, events.search.empty, this.pushState);
window.onpopstate = this.popState.bind(this);
});
});