Sergey Olefir
My feedback
1 result found
-
94 votes
An error occurred while saving the comment
Sergey Olefir
supported this idea
·
1 result found
I fully support this request.
Meanwhile I hacked a little something that works with Opera (user js) -- may have bugs etc, but maybe useful for someone:
(function(){
if (location.hostname.indexOf('theoldreader.com') != -1)
{
window.opera.addEventListener('BeforeEvent.click', function (e)
{
// window.alert("Ding4: " + e.event.target);
// only prevent default behavior for clicks into posts text
if (e.event.target instanceof HTMLDivElement)
{
e.preventDefault();
}
if (e.event.target instanceof HTMLParagraphElement)
{
e.preventDefault();
}
}, false);
}
})();