diff --git a/platform/chromium/options_ui.js b/platform/chromium/options_ui.js index 8a7a03f55..1e7f552b1 100644 --- a/platform/chromium/options_ui.js +++ b/platform/chromium/options_ui.js @@ -27,15 +27,17 @@ 'use strict'; -var messager = vAPI.messaging.channel('_open'); -messager.send({ - what: 'gotoURL', - details: { - url: 'dashboard.html', - select: true, - index: -1 +vAPI.messaging.send( + 'default', + { + what: 'gotoURL', + details: { + url: 'dashboard.html', + select: true, + index: -1 + } } -}); +); window.close(); /******************************************************************************/