Added "?" to display list of keyboard shortcuts

This commit is contained in:
Frederic Guillot
2016-03-11 23:01:38 -05:00
parent 4f54a547fa
commit 241ca53e47
9 changed files with 54 additions and 35 deletions

View File

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