12345678910111213141516 |
- (function (module) {
- module.controller('tabsCtrl', ["$scope","$http", "myService", "$ionicHistory", "$state", function ($scope,$http, myService, $ionicHistory, $state) {
- $scope.go = function(target) {
- // $ionicHistory.clearHistory();
- $state.go(target);
- };
- $scope.myMes = function(){
- $scope.go("app.my")
- };
- $scope.myIndex = function(){
- $scope.go("app.home")
- };
- }]);
- })(angular.module('app.controllers'));
|