Bug 1303989 - New console frontend: Transfer focus to vview window on vview link click. r=bgrins

MozReview-Commit-ID: JVs6Co1DUXv
This commit is contained in:
Lin Clark 2016-09-21 16:07:03 -07:00
Родитель 441d8c4ead
Коммит ddf863a8eb
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -12,6 +12,9 @@
*
* Once JSTerm is also written in React/Redux, these will be actions.
*/
exports.openVariablesView = (object) => {
window.jsterm.openVariablesView({objectActor: object});
exports.openVariablesView = (objectActor) => {
window.jsterm.openVariablesView({
objectActor,
autofocus: true,
});
};