insert descriptive commit here
This commit is contained in:
parent
35f4176375
commit
02e6b30a1f
@ -5,11 +5,14 @@ galleryImage = document.getElementById("galleryImage");
|
||||
previewLinks = document.getElementsByClassName("previewLink");
|
||||
headerImage = document.getElementById("headerImage");
|
||||
|
||||
touchDragStartX = null;
|
||||
touchDragThreshold = 50;
|
||||
touchDirection = null;
|
||||
directionDetermined = false;
|
||||
|
||||
// null is used when no information is supposed to be available.
|
||||
// functions set these to useful values during touch events.
|
||||
touchDragStartX = null;
|
||||
touchDirection = null;
|
||||
|
||||
function enlargeImage (filename) {
|
||||
viewState = photos.indexOf(filename);
|
||||
galleryImage.fullRes = filename;
|
||||
@ -72,6 +75,7 @@ function mouseUpHandler (event) {
|
||||
};
|
||||
|
||||
function onTouchMove (event) {
|
||||
event.preventDefault();
|
||||
screenX = event.changedTouches[0].screenX;
|
||||
if (!directionDetermined && touchDragStartX == null) {
|
||||
touchDragStartX = screenX;
|
||||
@ -85,6 +89,7 @@ function onTouchMove (event) {
|
||||
};
|
||||
|
||||
function onTouchEnd (event) {
|
||||
event.preventDefault();
|
||||
// poorly phrased, but this must reset state to default
|
||||
directionDetermined = false;
|
||||
touchDragStartX = null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user