OSDN Git Service

795ac6a89c9c15a891ba61c294c90ade66beb36d
[eos/base.git] / zephyr / client / app / route / commandPage / commandPage.js
1 'use strict';
2
3 angular.module('zephyrApp')
4   .config(function ($routeProvider) {
5     $routeProvider
6       .when('/commandPage', {
7         templateUrl: 'app/route/commandPage/commandPage.html',
8         controller: 'CommandCtrl'
9       });
10   });