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

fincanvas

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fincanvas - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

11

index.js

@@ -5,2 +5,13 @@ /* eslint-env browser */

if (typeof window.CustomEvent !== 'function') {
window.CustomEvent = function(event, params) {
params = params || { bubbles: false, cancelable: false, detail: undefined };
var evt = document.createEvent('CustomEvent');
evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
return evt;
};
window.CustomEvent.prototype = window.Event.prototype;
}
var rectangular = require('rectangular');

@@ -7,0 +18,0 @@

2

package.json
{
"name": "fincanvas",
"version": "1.4.0",
"version": "1.4.1",
"description": "Openfin's HTML canvas++ wrapper.",

@@ -5,0 +5,0 @@ "repository": {

@@ -5,2 +5,4 @@ # fincanvas

> v1.4.1 - Polyfill for `CustomEvent` for IE11.
> v1.4.0 - The `event.details.identifier` object passed to `finKeyDown` and `finKeyUp` events now reflects `KeyboardEvent.key` rather than the now-deprecated (as of Chromium M53) `KeyboardEvent.keyIdentifier`. The possible values in these two properties are _similar_ but not _identical_. See the deprecated [keyIdentifier list](https://www.w3.org/TR/2009/WD-DOM-Level-3-Events-20090908/#keyset-keyidentifiers) _vs._ the supported [key list](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key#Key_values). (Note that neither `fin-canvas` itself nor `fin-hypergrid` seem to have any references to `details.identifier`.)

@@ -7,0 +9,0 @@

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