Updated .gitignore, reverted annotate content

This commit is contained in:
Andrew Gundersen 2022-03-21 07:27:50 -05:00
commit 70113b8572
7 changed files with 2 additions and 8140 deletions

1
.gitignore vendored
View file

@ -26,3 +26,4 @@ pnpm-debug.log*
*.app
*.sublime-workspace
*.sublime-project

View file

@ -1,9 +0,0 @@
{
"folders":
[
{
"name": "electron",
"path": "."
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -45,14 +45,7 @@ const Messenger = {
{
search(update.message).context = update.context;
}
else if (update.text)
{
search(update.message).content.at(-1).text = update.text;
setTimeout(() => {
document.getElementById("messenger").dispatchEvent(new CustomEvent('adjust-scroll'))
}, 100);
}
});
initScroll("messenger");

View file

@ -1,8 +0,0 @@
{
"folders":
[
{
"path": "/Users/adgundersen/Documents/crimata/website"
}
]
}

File diff suppressed because one or more lines are too long

View file

@ -53,10 +53,6 @@ function handleMessageQueue()
{
search(update.message).context = update.context;
}
else if (update.text) /* Update the text of last message */
{
search(update.message).content.at(-1).text = update.text;
}
ipcEmit("message", update);
}