angular.module('push') .controller('newMessagePageCtrl', function ($scope,$ionicHistory) { $scope.newmessage = function(){ $scope.go("choiceResource"); } $scope.goBackToIndex = function(){ $scope.go("tab.account"); } });