Started working on setting the cursor position in the fullscreen textbox (INCOMPLETE!)

This commit is contained in:
Robbie Antenesse 2016-02-26 18:13:52 -07:00
parent 03aeeb4a8c
commit 5cb27c874b
2 changed files with 42 additions and 2 deletions

View File

@ -208,6 +208,7 @@ require_once(SITE_LOCATION . '/php/notificationconditiontree.php');
<div id="fullScreenTextboxScreen" style="display:none;">
<div id="fullScreenTextboxBackgroundFade" onclick="HideFullScreenTextbox()"></div>
<div id="expandedTextboxId" style="display:none;width:0px;height:0px;"></div>
<div id="fullScreenTextboxPage">
<span id="fullScreenTextboxScreenCloseButton" class="clickable" onclick="HideFullScreenTextbox()">Minimize</span>
<textarea id="fullScreenTextbox"></textarea>

View File

@ -377,12 +377,14 @@ function HideSettingsWhenComplete() {
}
}
function ShowFullScreenTextbox() {
document.getElementById("fullScreenTextbox").value = document.getElementById("dictionaryDescriptionEdit").value;
function ShowFullScreenTextbox(textboxToExpandId) {
document.getElementById("expandedTextboxId").innerHTML = textboxToExpandId;
document.getElementById("fullScreenTextbox").value = document.getElementById(textboxToExpandId).value;
document.getElementById("fullScreenTextboxScreen").style.display = "block";
}
function HideFullScreenTextbox() {
var expandedTextboxId = document.getElementById("expandedTextboxId").innerHTML;
document.getElementById("dictionaryDescriptionEdit").value = document.getElementById("fullScreenTextbox").value;
document.getElementById("fullScreenTextboxScreen").style.display = "none";
}
@ -466,4 +468,41 @@ function NewWordNotification(word) {
function FocusAfterAddingNewWord() {
document.getElementById("word").focus();
}
function getCaret(element) {
// Retrieved from http://stackoverflow.com/a/263796/3508346
if (element.selectionStart) {
return element.selectionStart;
} else if (document.selection) {
element.focus();
var range = document.selection.createRange();
if (range == null) {
return 0;
}
var re = element.createTextRange(),
rc = re.duplicate();
re.moveToBookmark(range.getBookmark());
rc.setEndPoint('EndToStart', re);
return rc.text.length;
}
return 0;
}
function setSelectionRange(input, selectionStart, selectionEnd) {
// Retrieved from http://stackoverflow.com/a/17858641/3508346
if (input.setSelectionRange) {
input.focus();
input.setSelectionRange(selectionStart, selectionEnd);
}
else if (input.createTextRange) {
var range = input.createTextRange();
range.collapse(true);
range.moveEnd('character', selectionEnd);
range.moveStart('character', selectionStart);
range.select();
}
}