ultimate-jekyll-manager 0.0.158 → 0.0.159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -146,8 +146,10 @@ export default function (Manager, options) {
|
|
|
146
146
|
function loadSrc(element, value) {
|
|
147
147
|
const tagName = element.tagName.toLowerCase();
|
|
148
148
|
|
|
149
|
-
// Add cache buster to URL
|
|
150
|
-
|
|
149
|
+
// Add cache buster to URL (skip for iframes - external embeds don't support it)
|
|
150
|
+
if (tagName !== 'iframe') {
|
|
151
|
+
value = addCacheBuster(value);
|
|
152
|
+
}
|
|
151
153
|
|
|
152
154
|
// For images, test load first
|
|
153
155
|
if (tagName === 'img') {
|