OSDN Git Service

Modified UI except execute command
[eos/base.git] / zephyr / client / app / route / home / home.js
1 'use strict';
2
3 angular.module('zephyrApp')
4   .config(function ($routeProvider) {
5     $routeProvider
6       .when('/home', {
7         templateUrl: 'app/route/home/home.html',
8         controller: 'RouteHomeCtrl'
9       });
10   });