Created
July 21, 2020 21:54
-
-
Save salsalabs/764cdc9e8bb5507ca469d3ef4f9fe059 to your computer and use it in GitHub Desktop.
Script to remove the calendar buttons from an event.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
document.addEventListener("DOMContentLoaded", function() { | |
var e = document.querySelector("#calendarButtons"); | |
if (e != null) { | |
e.style.display = "none"; | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment