diff options
| author | Nathan Warner <nathan@frcv.net> | 2020-05-30 22:45:41 -0600 |
|---|---|---|
| committer | Nathan Warner <nathan@frcv.net> | 2020-05-30 22:45:41 -0600 |
| commit | f8d96543de36dd2d9a223fd017b6c5f671ff3e6a (patch) | |
| tree | d39e54107727f95d75fe92708806cf1d6dd6b02b /plugins/hotkeys_force_top/init.js | |
| parent | b39e615683dae2d9b08939b7fb131cb8607c8415 (diff) | |
Created hotkeys_force_top plugin
Renamed swap_jk to match new naming scheme.
Diffstat (limited to 'plugins/hotkeys_force_top/init.js')
| -rw-r--r-- | plugins/hotkeys_force_top/init.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/hotkeys_force_top/init.js b/plugins/hotkeys_force_top/init.js new file mode 100644 index 000000000..8d6280fc9 --- /dev/null +++ b/plugins/hotkeys_force_top/init.js @@ -0,0 +1,6 @@ +require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) { + ready(function () { + Headlines.default_force_to_top = true; + }); +}); + |