tabs.js 511 B

12345678910111213141516
  1. (function (module) {
  2. module.controller('tabsCtrl', ["$scope","$http", "myService", "$ionicHistory", "$state", function ($scope,$http, myService, $ionicHistory, $state) {
  3. $scope.go = function(target) {
  4. // $ionicHistory.clearHistory();
  5. $state.go(target);
  6. };
  7. $scope.myMes = function(){
  8. $scope.go("app.my")
  9. };
  10. $scope.myIndex = function(){
  11. $scope.go("app.home")
  12. };
  13. }]);
  14. })(angular.module('app.controllers'));