Sergey Olefir ← Customer Feedback for The Old Reader My feedback 1 result found Not automatically mark as read when clicking a post 94 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 11 comments · Feature requests · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close An error occurred while saving the comment Sergey Olefir commented · Jul 2, 2013 · Edit… · Delete… 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); } })(); Save Submitting... Sergey Olefir supported this idea · Jul 2, 2013
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);
}
})();