Files
klz-cables.com/.pnpm-store/v10/files/2e/e9d03df23c670ef0e39b0027480b5d4b20415099975615cc8004a5756032547185b9ca019e169f4b1117b864d72949c4529695810173d8c3e2ea9c5363a8ee
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
699 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DocumentCloner = void 0;
var DocumentCloner = /** @class */ (function () {
function DocumentCloner() {
this.clonedReferenceElement = {
ownerDocument: {
defaultView: {
pageXOffset: 12,
pageYOffset: 34
}
}
};
}
DocumentCloner.prototype.toIFrame = function () {
return Promise.resolve({});
};
DocumentCloner.destroy = function () {
return true;
};
return DocumentCloner;
}());
exports.DocumentCloner = DocumentCloner;
//# sourceMappingURL=document-cloner.js.map