diff options
Diffstat (limited to 'app/Controller/Doc.php')
-rw-r--r-- | app/Controller/Doc.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Controller/Doc.php b/app/Controller/Doc.php index 6f309d48..f85326ac 100644 --- a/app/Controller/Doc.php +++ b/app/Controller/Doc.php @@ -54,4 +54,12 @@ class Doc extends Base $this->response->html($this->helper->layout->app('doc/show', $this->readFile($filename))); } + + /** + * Display keyboard shortcut + */ + public function shortcuts() + { + $this->response->html($this->template->render('config/keyboard_shortcuts')); + } } |