removed ngclock

This commit is contained in:
David Baldwynn 2015-07-13 18:00:00 -07:00
parent 26daedf21d
commit 7ec73b383b
3 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,4 @@
{% extends 'layout.server.view.html' %}
{% block content %}
<section ui-view></section>
{% endblock %}

View file

@ -53,7 +53,7 @@
<![endif]-->
</head>
<body ng-cloak>
<body>
<header data-ng-include="'/modules/core/views/header.client.view.html'"></header>
<section class="content">
<!-- <section class="container"> -->

View file

@ -13,11 +13,10 @@ angular.module('core').config(['$stateProvider', '$urlRouterProvider',
templateUrl: 'modules/core/views/home.client.view.html'
});
$urlRouterProvider.otherwise( function($injector) {
var $state = $injector.get('$state');
$state.go('home');
});
// $urlRouterProvider.otherwise( function($injector) {
// var $state = $injector.get('$state');
// $state.go('home');
// });
}
]);