Merge branch 'master' into mistletoe

This commit is contained in:
kek7198 2021-12-09 14:40:45 -06:00
commit b3579dd596
12 changed files with 58 additions and 49 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;