Skip to content

Instantly share code, notes, and snippets.

@0mg
Created December 21, 2014 03:10
Show Gist options
  • Save 0mg/bb0f62bb2db11e93ab38 to your computer and use it in GitHub Desktop.
Save 0mg/bb0f62bb2db11e93ab38 to your computer and use it in GitHub Desktop.
// disable post a tweet in AM
addEventListener("click", function(e) {
if (e.target.id === "status_update") {
if (new Date().getHours() < 12) {
alert("keep quiet in AM");
e.stopPropagation();
}
}
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment