Updated marketing images to change with theme

Removed visible attribute that was left over from testing
Removed drag attribute on check boxes, needs better implimentation later. Drag prevented click events
This commit is contained in:
Max G
2022-04-03 17:21:05 +00:00
parent 0c4f6e94c1
commit d94b8c90fc
5 changed files with 48 additions and 33 deletions

View File

@@ -357,9 +357,21 @@ const SquireButtonFunctions = {
},
setText(inText){
this.editor.setHTML(inText)
// this.noteText = this.editor._getHTML()
// this.diffNoteText = this.editor._getHTML()
//Make sure all list items have draggable property
let container = document.getElementById('squire-id')
let listItems = container.getElementsByTagName('li')
for(let itemIndex in listItems){
// console.log(listItems[itemIndex])
// listItems[itemIndex].setAttribute('draggable','true')
}
// console.log(listItems)
},
getText(){