Stop edit mode when leaving create form page

pull/3813/head
Alex Dik 9 years ago
parent d6e636f853
commit 43c0ed848f
  1. 4
      frontend/app/components/work-packages/controllers/wp-new.controller.js

@ -122,5 +122,9 @@ function WorkPackageNewController($scope,
$scope.$on('workPackageUpdatedInEditor', function(e, workPackage) {
$state.go(vm.successState, { workPackageId: workPackage.props.id });
});
$scope.$on('$stateChangeStart', function () {
EditableFieldsState.editAll.stop();
});
}
}

Loading…
Cancel
Save