Skip to content

Instantly share code, notes, and snippets.

@salsalabs
Created July 21, 2020 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salsalabs/764cdc9e8bb5507ca469d3ef4f9fe059 to your computer and use it in GitHub Desktop.
Save salsalabs/764cdc9e8bb5507ca469d3ef4f9fe059 to your computer and use it in GitHub Desktop.
Script to remove the calendar buttons from an event.
<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