Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jiaminghi/c-render

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jiaminghi/c-render - npm Package Compare versions

Comparing version 0.3.5 to 0.3.6

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 0.3.6-alpha (2019-06-12)
### Bug Fixes
- **Event:** `Click` callback is not responding.
# 0.3.5-alpha (2019-06-10)

@@ -2,0 +8,0 @@

6

lib/class/crender.class.js

@@ -313,3 +313,3 @@ "use strict";

});
if (!hoverGraph || !hoverGraph.drag) return;
if (!hoverGraph) return;
hoverGraph.status = 'active';

@@ -333,2 +333,4 @@ }

if (activeGraph) {
if (!activeGraph.drag) return;
if (typeof activeGraph.move !== 'function') {

@@ -403,3 +405,3 @@ console.error('No move method is provided, cannot be dragged!');

graphs.forEach(function (graph) {
return graph.status = 'static';
return graph && (graph.status = 'static');
});

@@ -406,0 +408,0 @@ if (activeGraph) activeGraph.status = 'hover';

{
"name": "@jiaminghi/c-render",
"version": "0.3.5",
"version": "0.3.6",
"author": "JiaMing <743192023@qq.com>",

@@ -5,0 +5,0 @@ "description": "Canvas-based vector graphics rendering plugin",

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