summaryrefslogtreecommitdiff
path: root/plugins/no_title_counters/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-04 15:09:56 +0300
committerAndrew Dolgov <[email protected]>2021-03-04 15:09:56 +0300
commit2f6ea8b387ee4717516cbc96140f58542fbfa30c (patch)
tree051684c2e3a0b1e6aa5a1dd27c8975b1cba6634b /plugins/no_title_counters/init.php
parentb74e31384463541732b622bd5529a18a6100b329 (diff)
split a bunch of plugins into separate repos
Diffstat (limited to 'plugins/no_title_counters/init.php')
-rw-r--r--plugins/no_title_counters/init.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/no_title_counters/init.php b/plugins/no_title_counters/init.php
deleted file mode 100644
index ff8dbe9fa..000000000
--- a/plugins/no_title_counters/init.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-class No_Title_Counters extends Plugin {
- private $host;
-
- function about() {
- return array(null,
- "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;
- }
-
-} \ No newline at end of file