add simple plugin to prevent tt-rss tab flashing on new articles

master
Andrew Dolgov 11 years ago
parent 1966e05457
commit 1c8bcb580e

@ -0,0 +1,5 @@
dojo.addOnLoad(function() {
updateTitle = function() {
document.title = "Tiny Tiny RSS";
};
});

@ -0,0 +1,25 @@
<?php
class No_Title_Counters extends Plugin {
private $host;
function about() {
return array(1.0,
"Remove counters from window title (prevents tab flashing on new articles)",
"fox");
}
function init($host) {
$this->host = $host;
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function api_version() {
return 2;
}
}
?>
Loading…
Cancel
Save