Replace a onblur with a focusout that was missed, it had the 'change' so there was no bug

This commit is contained in:
William Karsten 2022-06-21 11:56:05 -05:00
parent e76e005b6f
commit 2ea18cdc92
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ onPageLoad(() => {
// Story Related Functions
on('blur change', '#story_title', (event) => {
on('focusout change', '#story_title', (event) => {
Lobsters.checkStoryTitle(event.target);
});