Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function(){
- timer = setInterval(function(){
- elem = document.getElementById('wp-content-editor-container').querySelector('#mceu_0')
- if (elem) {
- elem.addEventListener('click',function(e){
- setTimeout(function(){
- Array.from(document.getElementsByClassName('mce-text')).forEach(function(value,index){
- switch(index){
- case 1:
- case 4:
- case 5:
- case 6:
- case 7:
- value.parentElement.style.display='none'
- break
- }
- })
- },100)
- })
- clearInterval(timer)
- }
- },100)
- })()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement