Skip to content

Commit

Permalink
Merge pull request #77 from QuickCorp/v2.3
Browse files Browse the repository at this point in the history
make secureObjects false by default to prevent conflicts related to E…
  • Loading branch information
jeanmachuca committed Jul 7, 2021
2 parents c9b1e71 + 79b614f commit 74aae9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -4086,11 +4086,11 @@
Object.freeze(Object.prototype);
Object.freeze(Object);
};
if (isBrowser && CONFIG.get("secureObjects", true)){
if (isBrowser && CONFIG.get("secureObjects", false)){
Ready(function (){
__freeze__();
});
} else if (CONFIG.get("secureObjects", true)) {
} else if (CONFIG.get("secureObjects", false)) {
__freeze__();
}
})(isBrowser);
Expand Down

0 comments on commit 74aae9d

Please sign in to comment.