Skip to content

Commit

Permalink
Change order of release notes - Confluence before Github
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ziv committed Nov 6, 2016
1 parent 48f804e commit e6e4319
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion controllers/editTickets.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ app.controller('editTicketsController', ['$scope', '$location', '$timeout', 'Git
};

$scope.back = function () {
$location.path('/release-notes-confluence');
$location.path('/release-notes-github');
};
}]);
4 changes: 2 additions & 2 deletions controllers/popup.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ var app = angular.module('releaseVersion', ['ngMaterial', 'ngRoute', 'ig.linkHea
controller: 'tagRepoController'
})
.when('/release-notes-github', {
templateUrl: '3-release-notes-github.html',
templateUrl: '4-release-notes-github.html',
controller: 'releaseNotesGitHubController',
})
.when('/release-notes-confluence', {
templateUrl: '4-release-notes-confluence.html',
templateUrl: '3-release-notes-confluence.html',
controller: 'releaseNotesConfluenceController',
})
.when('/edit-tickets', {
Expand Down
4 changes: 2 additions & 2 deletions controllers/releaseNotesConfluence.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ app.controller('releaseNotesConfluenceController', ['$scope', '$location', '$tim
};

$scope.skip = function () {
$location.path('/edit-tickets');
$location.path('/release-notes-github');
};

$scope.back = function () {
$location.path('/release-notes-github');
$location.path('/tag-repo');
};
}]);
4 changes: 2 additions & 2 deletions controllers/releaseNotesGithub.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ app.controller('releaseNotesGitHubController', ['$scope', '$location', '$timeout
};

$scope.skip = function () {
$location.path('/release-notes-confluence');
$location.path('/edit-tickets');
};

$scope.back = function () {
$location.path('/tag-repo');
$location.path('/release-notes-confluence');
};
}]);
2 changes: 1 addition & 1 deletion controllers/tagRepo.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ app.controller('tagRepoController', ['$scope', '$location', '$timeout', 'GitHub'
};

$scope.skip = function () {
$location.path('/release-notes-github');
$location.path('/release-notes-confluence');
};

$scope.back = function () {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e6e4319

Please sign in to comment.