Created
March 3, 2012 21:43
-
-
Save xoebus/1968436 to your computer and use it in GitHub Desktop.
Remove Question and Answers from the Tumblr Dashboard
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
// Remove the dreadful question and answers from the dashboard. | |
setInterval(function() { | |
$('li > div.post_content > div.post_question').parent().parent().remove(); | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This can be used with dotjs. The interval is used to remove any posts that are pulled in via the endless scrolling feature.