Skip to content
Snippets Groups Projects
Commit b5540d5c authored by jaapjansma's avatar jaapjansma
Browse files

cancel and save and goback fixed.

parent 10a968f1
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ Required vars: formProcessor
<button crm-icon="fa-check" ng-click="save(true);" ng-disabled="editFormProcessorForm.$invalid || !isNameValid">
{{ts('Save and close')}}
</button>
<button crm-icon="fa-times" ng-click="editFormProcessorForm.$setPristine(); goto('formProcessors')">
<button crm-icon="fa-times" ng-click="editFormProcessorForm.$setPristine(); goback();">
{{ts('Cancel')}}
</button>
</div>
......
......@@ -42,7 +42,7 @@
}
);
angular.module('form_processor').controller('FormProcessorEditCtrl', function($scope, formProcessorFactory, dialogService, crmApi, apiCalls, $q, $timeout) {
angular.module('form_processor').controller('FormProcessorEditCtrl', function($scope, formProcessorFactory, dialogService, crmApi, apiCalls, $location, $q, $timeout) {
var ts = $scope.ts = CRM.ts(null);
$scope.formProcessor = apiCalls.formProcessor;
......@@ -112,11 +112,15 @@
$scope.editFormProcessorForm.$setPristine();
if (goBack) {
window.location.href = '#/formprocessors';
$scope.goback();
}
});
};
$scope.goback = function () {
$location.path('/formprocessors');
};
$scope.saveInputs = function(inputs, deletedInputs, api, formProcessor) {
angular.forEach(deletedInputs, function(input, key) {
if (input.id) {
......
......@@ -143,6 +143,7 @@ function form_processor_civicrm_navigationMenu(&$params) {
$posOfAdminMenu = array_search($administerMenuId, array_keys($params));
$newNavId = _form_processor_getMenuKeyMax($params);
$formProcessorMenu = array(
$newNavId => array(
'attributes' => array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment