Fix issue where keyboard shortcuts don't appear

Previously on a change view, if you click either the expand all or the
hide automated message links (and don't click elsewhere on the page),
keyboard shortcuts don't work.  This was due to the focus still being
on the link, which doesn't trigger the keyboard shortcuts.

This change removes focus on the links after they are clicked so even if
the user doesn't click elsewhere on the page, keyboard shortcuts will
still work.

Bug: Issue 4888
Change-Id: I51527325ea8d5d575c4d3f4ad02bf0b121fa8cce
This commit is contained in:
Becky Siegel
2016-11-14 09:49:11 -08:00
parent a7fa7b90ee
commit dc41fe2610

View File

@@ -113,11 +113,17 @@
for (var i = 0; i < messageEls.length; i++) {
messageEls[i].expanded = this._expanded;
}
if (e && e.target) {
e.target.blur();
}
},
_handleAutomatedMessageToggleTap: function(e) {
e.preventDefault();
this._hideAutomated = !this._hideAutomated;
if (e && e.target) {
e.target.blur();
}
},
_handleScrollTo: function(e) {