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

konva

Package Overview
Dependencies
Maintainers
1
Versions
212
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

konva - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

5

CHANGELOG.md

@@ -7,2 +7,7 @@ # Change Log

## [1.1.4][2016-09-13]
### Fixed
- Prevent throwing an error when text property of `Konva.Text` = undefined or null
## [1.1.3][2016-09-12]

@@ -9,0 +14,0 @@

2

package.json
{
"name": "konva",
"version": "1.1.3",
"version": "1.1.4",
"author": "Anton Lavrenov",

@@ -5,0 +5,0 @@ "files": [

@@ -23,3 +23,3 @@ ![Konva logo](https://raw.githubusercontent.com/konvajs/konvajs.github.io/master/apple-touch-icon-180x180.png)

```html
<script src="https://cdn.rawgit.com/konvajs/konva/1.1.3/konva.min.js"></script>
<script src="https://cdn.rawgit.com/konvajs/konva/1.1.4/konva.min.js"></script>
<div id="container"></div>

@@ -69,6 +69,6 @@ <script>

```html
<script src="https://cdn.rawgit.com/konvajs/konva/1.1.3/konva.min.js"></script>
<script src="https://cdn.rawgit.com/konvajs/konva/1.1.4/konva.min.js"></script>
```
You can use CDN: [https://cdn.rawgit.com/konvajs/konva/1.1.3/konva.min.js](https://cdn.rawgit.com/konvajs/konva/1.1.3/konva.min.js)
You can use CDN: [https://cdn.rawgit.com/konvajs/konva/1.1.4/konva.min.js](https://cdn.rawgit.com/konvajs/konva/1.1.4/konva.min.js)

@@ -75,0 +75,0 @@ ###2 Load via AMD (requirejs):

@@ -153,3 +153,3 @@ /*eslint-disable max-depth */

setText: function(text) {
var str = Konva.Util._isString(text) ? text : text.toString();
var str = Konva.Util._isString(text) ? text : (text || '').toString();
this._setAttr(TEXT, str);

@@ -156,0 +156,0 @@ return this;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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