Fixed handleGesture by moving it up, actually this time
This commit is contained in:
parent
1c0ccfc6bf
commit
95055cc857
|
@ -68,6 +68,33 @@ let indiv = false
|
||||||
let mobile = false
|
let mobile = false
|
||||||
let selectLatestNote = false
|
let selectLatestNote = false
|
||||||
|
|
||||||
|
|
||||||
|
function handleGesture() {
|
||||||
|
if (indiv) {
|
||||||
|
indiv = false
|
||||||
|
notesBar.style.width = "100%";
|
||||||
|
noteBoxDiv.style.width = "0px"
|
||||||
|
if (selectedNote !== 0) {
|
||||||
|
noteBoxDiv.readOnly = true
|
||||||
|
}
|
||||||
|
notesDiv.classList.remove("hidden")
|
||||||
|
noteBoxDiv.classList.add("hidden")
|
||||||
|
backButton.classList.add("hidden")
|
||||||
|
newNote.classList.remove("hidden")
|
||||||
|
} else {
|
||||||
|
indiv = true
|
||||||
|
noteBoxDiv.style.width = "100%";
|
||||||
|
notesBar.style.width = "0px"
|
||||||
|
if (selectedNote !== 0) {
|
||||||
|
noteBoxDiv.readOnly = false
|
||||||
|
}
|
||||||
|
notesDiv.classList.add("hidden")
|
||||||
|
noteBoxDiv.classList.remove("hidden")
|
||||||
|
backButton.classList.remove("hidden")
|
||||||
|
newNote.classList.add("hidden")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Init the note box
|
// Init the note box
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
pell.init({
|
pell.init({
|
||||||
|
@ -84,32 +111,6 @@ document.addEventListener("DOMContentLoaded", function() {
|
||||||
})
|
})
|
||||||
let noteBox = document.getElementsByClassName("pell-content")[0]
|
let noteBox = document.getElementsByClassName("pell-content")[0]
|
||||||
|
|
||||||
function handleGesture() {
|
|
||||||
if (indiv) {
|
|
||||||
indiv = false
|
|
||||||
notesBar.style.width = "100%";
|
|
||||||
noteBoxDiv.style.width = "0px"
|
|
||||||
if (selectedNote !== 0) {
|
|
||||||
noteBoxDiv.readOnly = true
|
|
||||||
}
|
|
||||||
notesDiv.classList.remove("hidden")
|
|
||||||
noteBoxDiv.classList.add("hidden")
|
|
||||||
backButton.classList.add("hidden")
|
|
||||||
newNote.classList.remove("hidden")
|
|
||||||
} else {
|
|
||||||
indiv = true
|
|
||||||
noteBoxDiv.style.width = "100%";
|
|
||||||
notesBar.style.width = "0px"
|
|
||||||
if (selectedNote !== 0) {
|
|
||||||
noteBoxDiv.readOnly = false
|
|
||||||
}
|
|
||||||
notesDiv.classList.add("hidden")
|
|
||||||
noteBoxDiv.classList.remove("hidden")
|
|
||||||
backButton.classList.remove("hidden")
|
|
||||||
newNote.classList.add("hidden")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
||||||
mobile = true
|
mobile = true
|
||||||
noteBoxDiv.classList.add("mobile")
|
noteBoxDiv.classList.add("mobile")
|
||||||
|
|
Reference in New Issue