New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ryuu.js

Package Overview
Dependencies
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ryuu.js - npm Package Compare versions

Comparing version 2.0.4 to 2.1.0

19

domo.js

@@ -62,2 +62,21 @@ /**

};
/**
* Let the domoapp optionally handle its own data updates.
*/
domo.onDataUpdate = function(cb){
window.addEventListener('message', function(event) {
var message = JSON.parse(event.data);
// send acknowledgement to prevent autorefresh
var ack = JSON.stringify({
event: 'ack',
alias: message.alias
});
event.source.postMessage(ack, event.origin);
// inform domo app which alias has been updated
cb(message.alias);
});
};

@@ -64,0 +83,0 @@ domo.env = getQueryParams();

2

package.json
{
"name": "ryuu.js",
"version": "2.0.4",
"version": "2.1.0",
"description": "Ryuu JavaScript Utility Library",

@@ -5,0 +5,0 @@ "main": "domo.js",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc