1
0

Fixed hiding new stream items if matching. (Performance needs to be tweaked!)

This commit is contained in:
Markus Birth 2013-06-26 01:32:28 +02:00
parent b1147749f4
commit 1cadf32e29

View File

@ -47,6 +47,6 @@ blacklist()
document.getElementsByClassName('ow')[0].addEventListener( 'DOMNodeInserted',
(event) ->
blacklist() if event.target.children?[0]?.firstChild?.className? is 'ii'
blacklist() if event.target.children[1]?.getAttribute('role') is 'article'
, false
)