1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

Merge branch 'hotkeys_force_top' of itsamenathan/tt-rss into master

This commit is contained in:
fox
2020-05-31 08:09:11 +00:00
committed by Gogs
3 changed files with 32 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
Headlines.default_force_to_top = true;
});
});
+24
View File
@@ -0,0 +1,24 @@
<?php
class Hotkeys_Force_Top extends Plugin {
private $host;
function about() {
return array(1.0,
"Force open article to the top",
"itsamenathan");
}
function init($host) {
$this->host = $host;
}
function get_js() {
return file_get_contents(__DIR__ . "/init.js");
}
function api_version() {
return 2;
}
}
@@ -1,5 +1,5 @@
<?php
class Swap_JK extends Plugin {
class Hotkeys_Swap_JK extends Plugin {
private $host;
@@ -27,4 +27,4 @@ class Swap_JK extends Plugin {
return 2;
}
}
}