Skip to content

Commit

Permalink
build v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
06wj committed Jul 20, 2017
1 parent 7b3341e commit bc6e9b7
Show file tree
Hide file tree
Showing 24 changed files with 46 additions and 46 deletions.
8 changes: 4 additions & 4 deletions build/amd/hilo-amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5590,7 +5590,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -5600,26 +5599,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/amd/hilo-amd.min.js

Large diffs are not rendered by default.

Binary file modified build/amd/hilo-amd.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions build/amd/hilo/util/drag.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -65,26 +64,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/amd/hilo/util/drag.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build/cmd/hilo-cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5678,7 +5678,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -5688,26 +5687,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/cmd/hilo-cmd.min.js

Large diffs are not rendered by default.

Binary file modified build/cmd/hilo-cmd.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions build/cmd/hilo/util/drag.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -67,26 +66,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/cmd/hilo/util/drag.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified build/commonjs/hilo-commonjs.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions build/commonjs/util/drag.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -65,26 +64,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/commonjs/util/drag.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build/kissy/hilo-kissy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5630,7 +5630,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -5640,26 +5639,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/kissy/hilo-kissy.min.js

Large diffs are not rendered by default.

Binary file modified build/kissy/hilo-kissy.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions build/kissy/hilo/util/drag.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -65,26 +64,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/kissy/hilo/util/drag.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build/standalone/hilo-standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -5595,7 +5595,6 @@ var drag = {
updateMouse(e);
that.off(Hilo.event.POINTER_START, onStart);

that.fire("dragStart", mouse);

that.__dragX = that.x - mouse.x;
that.__dragY = that.y - mouse.y;
Expand All @@ -5605,26 +5604,27 @@ var drag = {
}
stage.on(Hilo.event.POINTER_MOVE, onMove);
document.addEventListener(Hilo.event.POINTER_END, onStop);
that.fire("dragStart", mouse);
}

function onStop(e){
document.removeEventListener(Hilo.event.POINTER_END, onStop);
stage && stage.off(Hilo.event.POINTER_MOVE, onMove);

that.fire("dragEnd", mouse);
that.on(Hilo.event.POINTER_START, onStart);
that.fire("dragEnd", mouse);
}

function onMove(e){
updateMouse(e);

that.fire("dragMove", mouse);

var x = mouse.x + that.__dragX;
var y = mouse.y + that.__dragY;

that.x = Math.max(minX, Math.min(maxX, x));
that.y = Math.max(minY, Math.min(maxY, y));

that.fire("dragMove", mouse);
}

function updateMouse(e){
Expand Down
2 changes: 1 addition & 1 deletion build/standalone/hilo-standalone.min.js

Large diffs are not rendered by default.

Binary file modified build/standalone/hilo-standalone.zip
Binary file not shown.
Loading

0 comments on commit bc6e9b7

Please sign in to comment.