diff options
author | Giovane <giovaneliberato@gmail.com> | 2015-11-11 16:45:51 -0200 |
---|---|---|
committer | Giovane <giovaneliberato@gmail.com> | 2015-11-11 16:45:51 -0200 |
commit | 8da08bab434d7ee713399edb4cba147caa6354f7 (patch) | |
tree | 883cf8386884ae600376fab089a602873e24e3b3 /web-ui/app/js/services | |
parent | 3ef5fb5dd004edcf23d55b2533c37ffafec828f4 (diff) |
Propagate search query to noMailAvailablePane component #503
Diffstat (limited to 'web-ui/app/js/services')
-rw-r--r-- | web-ui/app/js/services/mail_service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/services/mail_service.js b/web-ui/app/js/services/mail_service.js index 04194964..3dae9df8 100644 --- a/web-ui/app/js/services/mail_service.js +++ b/web-ui/app/js/services/mail_service.js @@ -222,7 +222,7 @@ define( monitoredAjax(this, url, { dataType: 'json' }) .done(function (data) { this.attr.numPages = Math.ceil(data.stats.total / this.attr.pageSize); - this.trigger(document, events.mails.available, _.merge(_.merge({tag: this.attr.currentTag }), this.parseMails(data))); + this.trigger(document, events.mails.available, _.merge(_.merge({tag: this.attr.currentTag, forSearch: this.attr.lastQuery }), this.parseMails(data))); }.bind(this)) .fail(function () { this.trigger(document, events.ui.userAlerts.displayMessage, { message: i18n('Could not fetch messages') }); |