/*
* @title Tumblr no teaser
* @description hidden teaser banner on Tumblr
* @include http://*.tumblr.com/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
(function () {
Array.prototype.forEach.call(document.body.querySelectorAll([
'#tumblr_teaser_follow',
'#tumblr_controls'
]), function (teaser) {
teaser.style.display = 'none';
});
})();