Added help for shell commands.

This commit is contained in:
Gunther Brunner
2014-05-29 05:01:14 +09:00
parent 7fecf2828b
commit 5782a7af0b
10 changed files with 123 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
module.exports = angular.module('stf.help.shell', [])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/help/shell', {
template: require('./shell.jade')
})
}])