Skip to content

Commit

Permalink
remove unused config setting overrideComponentTag
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca committed May 1, 2023
1 parent 4afbd0c commit b79c8b2
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
_.prototype.toString = function () {
var _protected_symbols = [
"__qcobjects__",
"__qcobjects_sdk__",
"__loaded__",
"ComplexStorageCache",
"css",
"append",
Expand Down Expand Up @@ -1437,7 +1439,6 @@
"componentsBasePath": "",
"delayForReady": 0,
"preserveComponentBodyTag": false,
"overrideComponentTag": false,
"useConfigService": false,
"routingWay": "hash",
"useSDK": true,
Expand Down Expand Up @@ -2195,7 +2196,7 @@
if (typeof self.__new__ === "function") {
self.__new__.call(self, self);
}

self._generateRoutingPaths(self.body)
.then(function (){
self._reroute_()
Expand Down Expand Up @@ -2474,10 +2475,6 @@
} else if (effectClassName !== null && applyEffectTo === "load") {
_component_.applyTransitionEffect(effectClassName);
}
if (_top.CONFIG.get("overrideComponentTag")) {
_component_.body.outerHTML = this.body.innerHTML;
}

}
resolve({component:_component_, effect:_component_.effect});
});
Expand Down

0 comments on commit b79c8b2

Please sign in to comment.