Added breadcrumbs to all the static routes. Dynamic breadcrumbs to come later.

This commit is contained in:
Michael Abashian
2015-12-22 17:10:22 -05:00
committed by Jared Tabor
parent e313a5179f
commit 7951d26025
8 changed files with 64 additions and 11 deletions

View File

@@ -7,7 +7,8 @@ export default function($stateProvider){
url: state.route,
controller: state.controller,
templateUrl: state.templateUrl,
resolve: state.resolve
resolve: state.resolve,
ncyBreadcrumb: state.ncyBreadcrumb
});
}
};