Created hotkeys_force_top plugin
Renamed swap_jk to match new naming scheme.
This commit is contained in:
parent
b39e615683
commit
f8d96543de
|
@ -0,0 +1,6 @@
|
|||
require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
|
||||
ready(function () {
|
||||
Headlines.default_force_to_top = true;
|
||||
});
|
||||
});
|
||||
|
|
@ -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;
|
||||
|
Loading…
Reference in New Issue