Some small JavaScript fixes

This commit is contained in:
Jason McBrayer 2018-09-15 19:49:28 -04:00
parent 3d44b47f73
commit 9605c04a5f
1 changed files with 32 additions and 32 deletions

View File

@ -1,9 +1,3 @@
function scrollTop()
{
window.scrollTo(0,0);
return true;
}
function setTitle(user, page) function setTitle(user, page)
{ {
document.title = `Brutaldon (${user}) ${page}`; document.title = `Brutaldon (${user}) ${page}`;
@ -72,7 +66,10 @@ function expandCWButtonPrepare()
theButton.id = "expandCWs"; theButton.id = "expandCWs";
theButton.textContent = "Expand CWs"; theButton.textContent = "Expand CWs";
theButton.classList.toggle('button'); theButton.classList.toggle('button');
document.querySelector('#title').insertAdjacentElement('afterend', theButton); var title = document.querySelector('#title');
if (title)
{
title.insertAdjacentElement('afterend', theButton);
var details = document.querySelectorAll('details'); var details = document.querySelectorAll('details');
var openState = false; var openState = false;
@ -93,7 +90,8 @@ function expandCWButtonPrepare()
else { theButton.textContent = "Expand CWs"; }; else { theButton.textContent = "Expand CWs"; };
theButton.classList.toggle('is-active'); theButton.classList.toggle('is-active');
}); });
}; }
}
} }
} }
@ -132,6 +130,7 @@ function fileButtonUpdaters()
function characterCountSetup() function characterCountSetup()
{ {
if ($("#id_status").length) {
$("#status_count").text(characterCount()); $("#status_count").text(characterCount());
$("#id_status").keyup(function(){ $("#id_status").keyup(function(){
$("#status_count").text(characterCount()); $("#status_count").text(characterCount());
@ -140,6 +139,7 @@ function characterCountSetup()
$("#status_count").text(characterCount()); $("#status_count").text(characterCount());
}); });
} }
}
function characterCount() function characterCount()
{ {