[Config] Fix for priority of New Tab button
WTD-1392 WTD-1359 Set "Open in new tab" button to have priority "preferred"; Set fullscreen mode button to priority "default"; Tweaked full screen button tooltip text;
This commit is contained in:
@@ -94,18 +94,20 @@
|
|||||||
"key": "window",
|
"key": "window",
|
||||||
"name": "Open in a new tab",
|
"name": "Open in a new tab",
|
||||||
"implementation": "windowing/NewTabAction.js",
|
"implementation": "windowing/NewTabAction.js",
|
||||||
"description": "Open this object in a new tab",
|
"description": "Open in a new browser tab",
|
||||||
"category": ["view-control", "contextual"],
|
"category": ["view-control", "contextual"],
|
||||||
"depends": [ "urlService", "$window" ],
|
"depends": [ "urlService", "$window" ],
|
||||||
"group": "windowing",
|
"group": "windowing",
|
||||||
"glyph": "y"
|
"glyph": "y",
|
||||||
|
"priority": "preferred"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "fullscreen",
|
"key": "fullscreen",
|
||||||
"implementation": "windowing/FullscreenAction.js",
|
"implementation": "windowing/FullscreenAction.js",
|
||||||
"category": "view-control",
|
"category": "view-control",
|
||||||
"group": "windowing",
|
"group": "windowing",
|
||||||
"glyph": "z"
|
"glyph": "z",
|
||||||
|
"priority": "default"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"views": [
|
"views": [
|
||||||
|
|||||||
@@ -29,8 +29,8 @@ define(
|
|||||||
function () {
|
function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var ENTER_FULLSCREEN = "Enter full screen mode.",
|
var ENTER_FULLSCREEN = "Enter full screen mode",
|
||||||
EXIT_FULLSCREEN = "Exit full screen mode.";
|
EXIT_FULLSCREEN = "Exit full screen mode";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The fullscreen action toggles between fullscreen display
|
* The fullscreen action toggles between fullscreen display
|
||||||
|
|||||||
Reference in New Issue
Block a user