mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1207490 - Part 14: Remove use of expression closure from browser/modules/WindowsJumpLists.jsm. r=Gijs
This commit is contained in:
parent
688a00bb25
commit
ae5a0f5c2e
@ -102,8 +102,8 @@ var tasksCfg = [
|
||||
*/
|
||||
// Open new tab
|
||||
{
|
||||
get title() _getString("taskbar.tasks.newTab.label"),
|
||||
get description() _getString("taskbar.tasks.newTab.description"),
|
||||
get title() { return _getString("taskbar.tasks.newTab.label"); },
|
||||
get description() { return _getString("taskbar.tasks.newTab.description"); },
|
||||
args: "-new-tab about:blank",
|
||||
iconIndex: 3, // New window icon
|
||||
open: true,
|
||||
@ -114,8 +114,8 @@ var tasksCfg = [
|
||||
|
||||
// Open new window
|
||||
{
|
||||
get title() _getString("taskbar.tasks.newWindow.label"),
|
||||
get description() _getString("taskbar.tasks.newWindow.description"),
|
||||
get title() { return _getString("taskbar.tasks.newWindow.label"); },
|
||||
get description() { return _getString("taskbar.tasks.newWindow.description"); },
|
||||
args: "-browser",
|
||||
iconIndex: 2, // New tab icon
|
||||
open: true,
|
||||
@ -125,8 +125,8 @@ var tasksCfg = [
|
||||
|
||||
// Open new private window
|
||||
{
|
||||
get title() _getString("taskbar.tasks.newPrivateWindow.label"),
|
||||
get description() _getString("taskbar.tasks.newPrivateWindow.description"),
|
||||
get title() { return _getString("taskbar.tasks.newPrivateWindow.label"); },
|
||||
get description() { return _getString("taskbar.tasks.newPrivateWindow.description"); },
|
||||
args: "-private-window",
|
||||
iconIndex: 4, // Private browsing mode icon
|
||||
open: true,
|
||||
|
Loading…
Reference in New Issue
Block a user