Skip to content

Commit

Permalink
Merge branch 'release/3.3.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChemiKyle committed May 26, 2021
2 parents bc7413b + 9db9b44 commit 8329cdd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to the Form Render Skip Logic module will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.3.12] - 2021-05-26
### Changed
- Fix bug that removes arm-event after 10th control field in project level configuration, credit to REDCap community user nathan.orr (mbentz)


## [3.3.11] - 2020-03-20
### Changed
Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.3.12
2 changes: 1 addition & 1 deletion js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $(document).ready(function() {
var branchingLogicRadios = function($radio) {
$radio.prop('checked', true);

var suffix = '____' + $radio.attr('name').slice(-1);
var suffix = $radio.attr('name').slice($radio.attr('name').search('____'),$radio.attr('name').length);
var selectorShow = '[name="control_event_id' + suffix + '"], [name="control_field_key' + suffix + '"]';
var selectorHide = '[name="control_piping' + suffix + '"]';

Expand Down

0 comments on commit 8329cdd

Please sign in to comment.