Socket
Socket
Sign inDemoInstall

cavalion-blocks

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cavalion-blocks - npm Package Compare versions

Comparing version 0.9.9 to 0.9.11

src/prototypes/Popup.js

7

CHANGELOG.md

@@ -0,1 +1,8 @@

### 2019-11-29 - 0.9.11
- Introducing new classes
### 2019-11-25 - 0.9.10
- Fixing auto-uri-ing blocks created via B.instantiate()
- Local overrides?
### 2019-08-21 - 0.9.9

@@ -2,0 +9,0 @@ - Enhancements in order to use require() with relative paths, kindof:

2

package.json
{
"name": "cavalion-blocks",
"version": "0.9.9",
"version": "0.9.11",
"description": "`blocks-dot-js` `[].js`",

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

@@ -361,8 +361,9 @@ define(function(require) {

var factory = new Factory(require, uri || "", sourceUri, options.setIsRoot || false);
var factory = new Factory(require, uri || source[0] || "", sourceUri, options.setIsRoot || false);
var p = new Promise(function(resolve, reject) {
factory.load(source, function() {
//resolve.apply(this, arguments);
try {
resolve(factory.newInstance(owner, uri, options));
var root = factory.newInstance(owner, uri, options);
if(typeof root.update === "function") root.update();
resolve(root);
} catch(e) {

@@ -369,0 +370,0 @@ reject(e);

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