mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Test touch events prevent default
This commit is contained in:
parent
bf2c9f765e
commit
2e93696ce7
@ -942,9 +942,9 @@
|
|||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* See @Gruntfile.js => after build, -2016-06-02-07-21 is replaced by the build version
|
* See @Gruntfile.js => after build, -2016-06-02-07-27 is replaced by the build version
|
||||||
*/
|
*/
|
||||||
var version = '-2016-06-02-07-21';
|
var version = '-2016-06-02-07-27';
|
||||||
var versionHasNotBeenReplaced = version.indexOf('@@') === 0;
|
var versionHasNotBeenReplaced = version.indexOf('@@') === 0;
|
||||||
if (versionHasNotBeenReplaced) {
|
if (versionHasNotBeenReplaced) {
|
||||||
version = '';
|
version = '';
|
||||||
|
@ -20975,7 +20975,6 @@ return Q;
|
|||||||
|
|
||||||
ns.DrawingController.prototype.onTouchstart_ = function (event) {
|
ns.DrawingController.prototype.onTouchstart_ = function (event) {
|
||||||
this.onMousedown_(event);
|
this.onMousedown_(event);
|
||||||
event.preventDefault();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.DrawingController.prototype.onTouchmove_ = function (event) {
|
ns.DrawingController.prototype.onTouchmove_ = function (event) {
|
||||||
@ -20985,7 +20984,6 @@ return Q;
|
|||||||
|
|
||||||
ns.DrawingController.prototype.onTouchend_ = function (event) {
|
ns.DrawingController.prototype.onTouchend_ = function (event) {
|
||||||
this.onMouseup_(event);
|
this.onMouseup_(event);
|
||||||
event.preventDefault();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
File diff suppressed because one or more lines are too long
@ -896,9 +896,9 @@
|
|||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* See @Gruntfile.js => after build, -2016-06-02-07-21 is replaced by the build version
|
* See @Gruntfile.js => after build, -2016-06-02-07-27 is replaced by the build version
|
||||||
*/
|
*/
|
||||||
var version = '-2016-06-02-07-21';
|
var version = '-2016-06-02-07-27';
|
||||||
var versionHasNotBeenReplaced = version.indexOf('@@') === 0;
|
var versionHasNotBeenReplaced = version.indexOf('@@') === 0;
|
||||||
if (versionHasNotBeenReplaced) {
|
if (versionHasNotBeenReplaced) {
|
||||||
version = '';
|
version = '';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user