mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add tooltip to expand button in markdown editor
This commit is contained in:
parent
3a1d0f3695
commit
9dbdf0947b
@ -796,6 +796,7 @@
|
|||||||
},
|
},
|
||||||
"markdownEditor": {
|
"markdownEditor": {
|
||||||
"title": "Markdown editor",
|
"title": "Markdown editor",
|
||||||
|
"expand": "Expand",
|
||||||
"format": "Formatted with markdown",
|
"format": "Formatted with markdown",
|
||||||
"heading1": "Heading 1",
|
"heading1": "Heading 1",
|
||||||
"heading2": "Heading 2",
|
"heading2": "Heading 2",
|
||||||
|
@ -795,6 +795,7 @@
|
|||||||
},
|
},
|
||||||
"markdownEditor": {
|
"markdownEditor": {
|
||||||
"title": "マークダウンエディタ",
|
"title": "マークダウンエディタ",
|
||||||
|
"expand": "拡大",
|
||||||
"format": "マークダウン形式で記述",
|
"format": "マークダウン形式で記述",
|
||||||
"heading1": "見出しレベル1",
|
"heading1": "見出しレベル1",
|
||||||
"heading2": "見出しレベル2",
|
"heading2": "見出しレベル2",
|
||||||
|
@ -2484,7 +2484,7 @@ RED.editor = (function() {
|
|||||||
editor.toolbar = customEditTypes['_markdown'].buildToolbar(toolbarRow,editor);
|
editor.toolbar = customEditTypes['_markdown'].buildToolbar(toolbarRow,editor);
|
||||||
if (options.expandable !== false) {
|
if (options.expandable !== false) {
|
||||||
var expandButton = $('<button type="button" class="red-ui-button" style="float: right;"><i class="fa fa-expand"></i></button>').appendTo(editor.toolbar);
|
var expandButton = $('<button type="button" class="red-ui-button" style="float: right;"><i class="fa fa-expand"></i></button>').appendTo(editor.toolbar);
|
||||||
|
RED.popover.tooltip(expandButton, RED._("markdownEditor.expand"));
|
||||||
expandButton.on("click", function(e) {
|
expandButton.on("click", function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var value = editor.getValue();
|
var value = editor.getValue();
|
||||||
|
Loading…
Reference in New Issue
Block a user