2015-12-23 00:16:54 +00:00
|
|
|
|
|
|
|
pageRouteInit.push(function ($routeProvider, $locationProvider) {
|
|
|
|
$routeProvider.when('/example-ui', {
|
2016-01-14 21:42:13 +00:00
|
|
|
template: '<div><h2>Example UI Index</h2><p>Welcome make yourself at home.</p></div>',
|
2015-12-23 00:16:54 +00:00
|
|
|
controller: PageIndex
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function PageIndex($scope, $http) {
|
|
|
|
}
|