saltfish 0.3.16 → 0.3.17

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.
@@ -11366,7 +11366,7 @@ const SaltfishPlayer$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.de
11366
11366
  __proto__: null,
11367
11367
  SaltfishPlayer
11368
11368
  }, Symbol.toStringTag, { value: "Module" }));
11369
- const version = "0.3.16";
11369
+ const version = "0.3.17";
11370
11370
  const packageJson = {
11371
11371
  version
11372
11372
  };
@@ -11508,6 +11508,14 @@ function createAPI() {
11508
11508
  return api;
11509
11509
  }
11510
11510
  const saltfish = createAPI();
11511
+ if (typeof window !== "undefined" && typeof document !== "undefined") {
11512
+ if (!document.querySelector('meta[name="saltfish-player-loaded"]')) {
11513
+ const meta = document.createElement("meta");
11514
+ meta.name = "saltfish-player-loaded";
11515
+ meta.content = "true";
11516
+ document.head.appendChild(meta);
11517
+ }
11518
+ }
11511
11519
  if (typeof window !== "undefined") {
11512
11520
  window.saltfish = saltfish;
11513
11521
  }