mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fixing issue 989 (#997)
* Fixing issue 989 Signed-off-by: Moshe Wajnberg <wajnberg@il.ibm.com> * Fixing the getRangeAt problem on Chrome Signed-off-by: Moshe Wajnberg <wajnberg@il.ibm.com> * Fixing the getRangeAt problem on Chrome Signed-off-by: Moshe Wajnberg <wajnberg@il.ibm.com>
This commit is contained in:
parent
55d7420abf
commit
b9da1f18b4
@ -1237,11 +1237,12 @@ RED.text.format = (function() {
|
|||||||
|
|
||||||
function displayWithStructure(element) {
|
function displayWithStructure(element) {
|
||||||
var txt = element.textContent || "";
|
var txt = element.textContent || "";
|
||||||
if (txt.length === 0) {
|
var selection = document.getSelection();
|
||||||
|
if (txt.length === 0 || !selection || selection.rangeCount <= 0) {
|
||||||
element.dispatchEvent(event);
|
element.dispatchEvent(event);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var selection = document.getSelection();
|
|
||||||
var range = selection.getRangeAt(0);
|
var range = selection.getRangeAt(0);
|
||||||
var tempRange = range.cloneRange(), startNode, startOffset;
|
var tempRange = range.cloneRange(), startNode, startOffset;
|
||||||
startNode = range.startContainer;
|
startNode = range.startContainer;
|
||||||
|
@ -196,7 +196,7 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
.form-row input .form-row div[contenteditable="true"] {
|
.form-row input, .form-row div[contenteditable="true"] {
|
||||||
width:70%;
|
width:70%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1082,3 +1082,8 @@ legend + .control-group {
|
|||||||
.form-horizontal .form-actions {
|
.form-horizontal .form-actions {
|
||||||
padding-left: 180px;
|
padding-left: 180px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-row div[contenteditable="true"] {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user