I need help modifying this code so that it resets my app only once when it goes to the homepage instead of continuously reloading. What changes can I make in the JavaScript to achieve this?
.controller('HomeCtrl', function ($scope, $window) {
$scope.$on('$ionicView.beforeEnter', function() {
// Add logic here to ensure code only executes once
})
})