tabs.js 311 B

12345678
  1. (function (module) {
  2. module.controller('tabsCtrl', ["$scope", "$ionicHistory", "$state", function ($scope, $ionicHistory, $state) {
  3. $scope.go = function(target) {
  4. // $ionicHistory.clearHistory();
  5. $state.go(target);
  6. };
  7. }]);
  8. })(angular.module('app.controllers'));