Entrega do Desafio #22

Merged
anacarolinaduartecavalcante merged 3 commits from develop into master 2023-02-10 22:04:48 +00:00
2 changed files with 23 additions and 11 deletions

View File

@ -1,16 +1,29 @@
const Placeholder = () => { const Placeholder = () => {
if (typeof document !== "undefined") { if (typeof document !== "undefined") {
const postalCodeInput = document.querySelector( const observer = new MutationObserver(mutations => {
".vtex-address-form-4-x-input" mutations.forEach(_mutation => {
); const postalCodeInput = document.querySelector(
const postalCodeValue = document.querySelector(".postalCode"); ".vtex-address-form-4-x-input"
if (postalCodeInput) { );
postalCodeInput.classList.add("postalCode"); const postalCodeValue = document.querySelector(".postalCode");
}
if (postalCodeValue) { if (postalCodeInput) {
postalCodeValue.setAttribute("placeholder", "Digite seu CEP"); postalCodeInput.classList.add("postalCode");
} observer.disconnect();
}
if (postalCodeValue) {
postalCodeValue.setAttribute("placeholder", "Digite seu CEP");
}
});
});
observer.observe(document, {
childList: true,
subtree: true
});
} }
return null; return null;
}; };

View File

@ -1,7 +1,6 @@
{ {
"html#breadcrumb": { "html#breadcrumb": {
"props": { "props": {
"tag": "section",
"testId": "breadcrumbs", "testId": "breadcrumbs",
"blockClass": "pdp-breadcrumb" "blockClass": "pdp-breadcrumb"
}, },