Skip to content

Commit

Permalink
fix(navView): _getView renamed to _getViewById, closes #736
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Bradley committed Mar 6, 2014
1 parent c99427a commit 78206d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ext/angular/src/directive/ionicViewState.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ angular.module('ionic.ui.viewState', ['ionic.service.view', 'ionic.service.gestu
}
link(viewScope);

var viewHistoryData = $ionicViewService._getView(viewRegisterData.viewId) || {};
var viewHistoryData = $ionicViewService._getViewById(viewRegisterData.viewId) || {};
viewScope.$broadcast('$viewContentLoaded', viewHistoryData);

if (onloadExp) viewScope.$eval(onloadExp);
Expand Down

0 comments on commit 78206d0

Please sign in to comment.