We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2292877 commit bcf1bd4Copy full SHA for bcf1bd4
src/services/builder.js
@@ -52,7 +52,7 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
52
n.setAttribute('ng-model', modelValue);
53
} else if (conf === 'replaceAll') {
54
var attributes = n.attributes;
55
- for (var j = 0; attributes.length; j++) {
+ for (var j = 0; j < attributes.length; j++) {
56
if (attributes[j].value && attributes[j].value.indexOf('$$value') !== -1) {
57
attributes[j].value = attributes[j].value.replace(/\$\$value\$\$/g, modelValue);
58
}
0 commit comments