scope error (#300)

This commit is contained in:
Hakim El Hattab 2013-03-05 09:48:42 -05:00
parent d237c22fc0
commit 16f9749db5
2 changed files with 5 additions and 5 deletions

View File

@ -1823,7 +1823,7 @@ var Reveal = (function(){
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
this.onTouchStart( event );
onTouchStart( event );
}
}
@ -1835,7 +1835,7 @@ var Reveal = (function(){
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
this.onTouchMove( event );
onTouchMove( event );
}
}
@ -1847,7 +1847,7 @@ var Reveal = (function(){
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
this.onTouchEnd( event );
onTouchEnd( event );
}
}

4
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long