mirror of
http://git.carcosa.net/jmcbray/brutaldon.git
synced 2024-11-27 09:10:08 -05:00
Don't create expandCWs button multiple times
This commit is contained in:
parent
d9cb4b36e5
commit
3407aa8086
@ -67,7 +67,10 @@ function menuPrepare() {
|
||||
|
||||
function expandCWButtonPrepare()
|
||||
{
|
||||
var theButton = document.createElement('p');
|
||||
var theButton = document.querySelector('#expandCWs');
|
||||
if (!theButton) {
|
||||
theButton = document.createElement('p');
|
||||
theButton.id = "expandCWs";
|
||||
theButton.textContent = "Expand CWs";
|
||||
theButton.classList.toggle('button');
|
||||
document.querySelector('#title').insertAdjacentElement('afterend', theButton);
|
||||
@ -93,6 +96,7 @@ function expandCWButtonPrepare()
|
||||
});
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function fileButtonUpdaters()
|
||||
{
|
||||
|
@ -36,8 +36,3 @@ mastodon.status_context(<numerical id>)
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block page_scripts_inline %}
|
||||
<script type="application/javascript">
|
||||
document.addEventListener('DOMContentLoaded', expandCWButtonPrepare);
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user