You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're currently using innerHTML in some places in the amp-story extension; we should instead use createElement/appendChild to mitigate future risks where we move from using static templates to dynamic ones including publisher-specified data.
We're currently using
innerHTML
in some places in the amp-story extension; we should instead usecreateElement
/appendChild
to mitigate future risks where we move from using static templates to dynamic ones including publisher-specified data.extensions/amp-story/0.1/amp-story-page.js: loadingScreen./*OK*/innerHTML = LOADING_SCREEN_CONTENTS_TEMPLATE;
extensions/amp-story/0.1/system-layer.js: this.root_./*OK*/innerHTML = TEMPLATE;
The text was updated successfully, but these errors were encountered: