Skip to content

Commit

Permalink
fix(state): allow view content loading broadcast
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzlemuttons committed Mar 18, 2014
1 parent 4d74d98 commit 7b78ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ function $StateProvider( $urlRouterProvider, $urlMatcherFactory, $
forEach(state.views, function (view, name) {
var injectables = (view.resolve && view.resolve !== state.resolve ? view.resolve : {});
injectables.$template = [ function () {
return $view.load(name, { view: view, locals: locals, params: $stateParams, notify: false }) || '';
return $view.load(name, { view: view, locals: locals, params: $stateParams }) || '';
}];

promises.push($resolve.resolve(injectables, locals, dst.resolve, state).then(function (result) {
Expand Down

0 comments on commit 7b78ede

Please sign in to comment.