Created hotkeys_force_top plugin

Renamed swap_jk to match new naming scheme.
This commit is contained in:
Nathan Warner 2020-05-30 22:45:41 -06:00
parent b39e615683
commit f8d96543de
3 changed files with 32 additions and 2 deletions

View File

@ -0,0 +1,6 @@
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function () {
Headlines.default_force_to_top = true;
});
});

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;
}
}

View File

@ -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;
}
}
}