This commit is contained in:
Aevann1 2021-12-09 22:16:17 +02:00
parent 8805bf72ea
commit acbb615533
2 changed files with 11 additions and 3 deletions

View file

@ -1,4 +1,8 @@
makeBold = function (form) {
function formkey() {
return Document.getElementById("formkey").innerHTML;
}
function makeBold(form) {
var text = document.getElementById(form);
var startIndex = text.selectionStart,
endIndex = text.selectionEnd;
@ -17,7 +21,7 @@ makeBold = function (form) {
}
}
makeItalics = function (form) {
function makeItalics(form) {
var text = document.getElementById(form);
var startIndex = text.selectionStart,
endIndex = text.selectionEnd;