mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2026-05-05 07:36:10 +02:00
22 lines
431 B
PHP
22 lines
431 B
PHP
<?php
|
|
class Hotkeys_Force_Top extends Plugin {
|
|
function about() {
|
|
return [null,
|
|
"Force open article to the top",
|
|
"itsamenathan"];
|
|
}
|
|
|
|
function init($host) {
|
|
|
|
}
|
|
|
|
function get_js() {
|
|
return file_get_contents(__DIR__ . "/init.js");
|
|
}
|
|
|
|
function api_version() {
|
|
return 2;
|
|
}
|
|
|
|
}
|