We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b9b84 commit 3d977d4Copy full SHA for 3d977d4
demo/index.js
@@ -1,8 +1,8 @@
1
// Test for dynamically inserted images and iframes
2
const addDynamicContent = (event) => {
3
- let divElement = document.createElement('div'),
4
- imageElement = document.createElement('img'),
5
- iframeElement = document.createElement('iframe');
+ const divElement = document.createElement('div');
+ const imageElement = document.createElement('img');
+ const iframeElement = document.createElement('iframe');
6
7
imageElement.setAttribute('is', 'loading-image');
8
// We're using a differing string at the end of the query than the regular one embedded directly into the page
0 commit comments