Socket
Socket
Sign inDemoInstall

knockout-popup-template

Package Overview
Dependencies
2
Maintainers
7
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.9.1 to 1.9.2

14

knockout.popupTemplate.js

@@ -362,3 +362,15 @@ /*

if (!src || src.indexOf(origin) === 0) {
$(iframe).contents().each(callback);
// try...catch to protect against foreign iframes throwing
// "Failed to read the 'contentDocument' property from
// 'HTMLIFrameElement': Blocked a frame with origin ...
// from accessing a cross-origin frame."
// Apparently that can happen despite the above check,
// maybe because the iframe is missing a src attribute.
var $contents;
try {
$contents = $(iframe).contents();
} catch (e) {}
if ($contents) {
$contents.each(callback);
}
}

@@ -365,0 +377,0 @@ });

2

package.json

@@ -5,3 +5,3 @@ {

"main": "knockout.popupTemplate.js",
"version": "1.9.1",
"version": "1.9.2",
"contributors": [

@@ -8,0 +8,0 @@ {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc