Skip to content

Commit

Permalink
Merge pull request #76 from QuickCorp/v2.3
Browse files Browse the repository at this point in the history
ordering code to prevent undefined symbols and ensure code integrity
  • Loading branch information
jeanmachuca committed Jul 7, 2021
2 parents 562d7e0 + 75751e6 commit ad099cf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -3963,7 +3963,7 @@
* $repeat(<length>, <text>)
* Where length is the number of occurrences of text
*/
return range(length).map(
return _top.range(length).map(
function (index) {
return text.replace("{{index}}",index.toString());
}
Expand All @@ -3972,9 +3972,8 @@

ClassFactory("Processor").setProcessor(repeat);


})(_top);


/**
* Load every component tag declared in the body
Expand Down

0 comments on commit ad099cf

Please sign in to comment.