mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 22:53:26 +02:00
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
module.exports = angular.module('help', [
|
|
require('./shell').name
|
|
])
|
|
.config(['$routeProvider', function ($routeProvider) {
|
|
$routeProvider.when('/help', {
|
|
template: require('./help.jade'),
|
|
controller: 'HelpCtrl'
|
|
})
|
|
}])
|
|
.controller('HelpCtrl', require('./help-controller'))
|