12345678 |
- (function (module) {
- module.controller('frameCtrl', ["$scope", "$ionicHistory", "$state", function ($scope, $ionicHistory, $state) {
- $scope.go = function (target) {
- $ionicHistory.clearHistory();
- $state.go(target);
- };
- }]);
- })(angular.module('app.controllers'));
|