Merge tag 'v4.3.2'
This commit is contained in:
commit
48582849d7
228 changed files with 2675 additions and 1267 deletions
|
@ -1,8 +1,5 @@
|
|||
// @ts-check
|
||||
|
||||
const allowedPrefixes = (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.dataset.allowedPrefixes) ? document.currentScript.dataset.allowedPrefixes.split(' ') : [];
|
||||
|
||||
(function () {
|
||||
(function (allowedPrefixes) {
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
|
@ -127,4 +124,4 @@ const allowedPrefixes = (document.currentScript && document.currentScript.tagNam
|
|||
container.appendChild(iframe);
|
||||
});
|
||||
});
|
||||
})();
|
||||
})((document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT' && document.currentScript.dataset.allowedPrefixes) ? document.currentScript.dataset.allowedPrefixes.split(' ') : []);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue