mobile-angular-ui
mobile-angular-ui copied to clipboard
Sidebar won't close after there is an exception triggerd by ng-click handler
there are 2 items in my sidebar. first one has ng-click="gotoIframe('http://www.w3schools.com/')" second one has ng-click="gotoIframe('http://www.google.com/')"
$scope.gotoIframe = function(url){ $scope.currentURL = url; $location.path('iframe'); }
where my iframe.html simply contains:
When clicking the first, everything fine. When clicking the second, the sidebar wont close, anymore, even I click the first again.
Seems application related, need more details... Which exception is triggered?