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

electron-virtual-keyboard

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-virtual-keyboard - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

package.json
{
"name": "electron-virtual-keyboard",
"version": "1.0.6",
"version": "1.0.7",
"description": "An electron based virtual keyboard. Uses electron's sendInputEvent api to implement a simple customizable soft keyboard.",

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

@@ -170,3 +170,3 @@ (function (factory) {

var text = key.length > 1?key.replace(/[\{\}]/gm, ''):key;
var parts = text.split(':');
var parts = (text==":")?[":"]:text.split(':');
var modifier = { mod: null, applied: [] };

@@ -400,2 +400,9 @@ if ( parts.length > 1 ) {

});
} else if (typeof this.config.autoPosition == 'function') {
var position = this.config.autoPosition(el, this.$container);
this.$container.css({
position: 'absolute',
top: position.top,
left: position.left
});
}

@@ -745,2 +752,2 @@ }

}));
}));
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