New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

oribella-doubletap

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oribella-doubletap - npm Package Compare versions

Comparing version 0.3.5 to 0.4.0

27

CHANGELOG.md

@@ -0,3 +1,18 @@

<a name="0.4.0"></a>
# 0.4.0 (2016-02-22)
### Features
* **pointers:** expose pointer object with `page` and `client` properties containing points ([946df84](https://github.com/oribella/doubletap/commit/946df84))
### BREAKING CHANGES
* pointers:
<a name="0.3.5"></a>
## [0.3.5](https://github.com/oribella/doubletap/compare/v0.3.4...v0.3.5) (2015-12-19)
## 0.3.5 (2015-12-19)

@@ -8,3 +23,3 @@

<a name="0.3.4"></a>
## [0.3.4](https://github.com/oribella/doubletap/compare/v0.3.3...v0.3.4) (2015-12-13)
## [0.3.4](https://github.com/oribella/doubletap/compare/f3051a0...v0.3.4) (2015-12-13)

@@ -19,3 +34,3 @@

<a name="0.3.3"></a>
## [0.3.3](https://github.com/oribella/doubletap/compare/v0.3.2...v0.3.3) (2015-12-11)
## [0.3.3](https://github.com/oribella/doubletap/compare/6b6bbc5...v0.3.3) (2015-12-11)

@@ -30,3 +45,3 @@

<a name="0.3.2"></a>
## [0.3.2](https://github.com/oribella/doubletap/compare/v0.3.1...v0.3.2) (2015-12-11)
## [0.3.2](https://github.com/oribella/doubletap/compare/387a003...v0.3.2) (2015-12-11)

@@ -41,3 +56,3 @@

<a name="0.3.1"></a>
## [0.3.1](https://github.com/oribella/doubletap/compare/v0.3.0...v0.3.1) (2015-12-10)
## [0.3.1](https://github.com/oribella/doubletap/compare/45e81de...v0.3.1) (2015-12-10)

@@ -52,3 +67,3 @@

<a name="0.3.0"></a>
# [0.3.0](https://github.com/oribella/doubletap/compare/v0.2.0...v0.3.0) (2015-12-10)
# [0.3.0](https://github.com/oribella/doubletap/compare/3781f52...v0.3.0) (2015-12-10)

@@ -55,0 +70,0 @@

@@ -57,6 +57,6 @@ define(["exports", "oribella-framework"], function (exports, _oribellaFramework) {

key: "tapend",
value: function tapend(event, pagePoints) {
value: function tapend(event, pointers) {
var _this = this;
this.data.pagePoints = pagePoints;
this.data.pointers = pointers;
++this.count;

@@ -73,2 +73,3 @@ if (this.count === 1) {

}
return undefined;
}

@@ -75,0 +76,0 @@ }]);

@@ -58,6 +58,6 @@ "use strict";

key: "tapend",
value: function tapend(event, pagePoints) {
value: function tapend(event, pointers) {
var _this = this;
this.data.pagePoints = pagePoints;
this.data.pointers = pointers;
++this.count;

@@ -74,2 +74,3 @@ if (this.count === 1) {

}
return undefined;
}

@@ -76,0 +77,0 @@ }]);

@@ -60,6 +60,6 @@ System.register(["oribella-framework"], function (_export) {

key: "tapend",
value: function tapend(event, pagePoints) {
value: function tapend(event, pointers) {
var _this = this;
this.data.pagePoints = pagePoints;
this.data.pointers = pointers;
++this.count;

@@ -76,2 +76,3 @@ if (this.count === 1) {

}
return undefined;
}

@@ -78,0 +79,0 @@ }]);

{
"name": "oribella-doubletap",
"version": "0.3.5",
"version": "0.4.0",
"description": "Doubletap gesture",

@@ -27,3 +27,3 @@ "license": "MIT",

"dependencies": {
"oribella-framework": "npm:oribella-framework@^0.3.4"
"oribella-framework": "npm:oribella-framework@^0.4.0"
},

@@ -33,12 +33,12 @@ "devDependencies": {

"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.2.6"
"core-js": "npm:core-js@^2.1.0"
}
},
"dependencies": {
"oribella-framework": "^0.3.4"
"oribella-framework": "^0.4.0"
},
"devDependencies": {
"jspm": "^0.16.15",
"oribella-dev": "^0.1.7"
"oribella-dev": "^0.1.22"
}
}

@@ -35,4 +35,4 @@ import {RETURN_FLAG} from "oribella-framework";

}
tapend(event, pagePoints) {
this.data.pagePoints = pagePoints;
tapend(event, pointers) {
this.data.pointers = pointers;
++this.count;

@@ -49,3 +49,4 @@ if (this.count === 1) {

}
return undefined;
}
}
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