Skip to content

Commit

Permalink
Merge branch 'SMP941_Compatibility_Release' of https://github.com/doy…
Browse files Browse the repository at this point in the history
…le-johnpaul/ROToolbox into SMP941_Compatibility_Release
  • Loading branch information
doyle-johnpaul committed Apr 15, 2021
2 parents 7eb2c9a + fa565ae commit 6c4660a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions custom_ROToolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ function transformRO() {

function parseOptions(controlName, control) {
var properties = "{}";
var regExp = /({[^}]+})/;
var rex = controlName + "(.*)";
var regExp = new RegExp(rex);
var matches = regExp.exec(control.text());
if (matches && matches[1])
properties = matches[1];
Expand Down Expand Up @@ -1655,4 +1656,4 @@ function tbxDatePicker (targetEle, settings) {
$(this).parents(".form-group").removeClass('has-error');
}
});
}
}

0 comments on commit 6c4660a

Please sign in to comment.