File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Change Log
5
5
6
6
* Fixed billboard rotation when sized in meters. [ #3979 ] ( https://github.com/AnalyticalGraphicsInc/cesium/issues/3979 )
7
7
* Added ` DebugCameraPrimitive ` to visualize the view frustum of a camera.
8
+ * Fixed touch events for the timeline [ #4305 ] ( https://github.com/AnalyticalGraphicsInc/cesium/pull/4305 )
8
9
9
10
### 1.25 - 2016-09-01
10
11
Original file line number Diff line number Diff line change @@ -702,9 +702,9 @@ define([
702
702
var len = e . touches . length , leftX = timeline . _topDiv . getBoundingClientRect ( ) . left ;
703
703
if ( timeline . _touchMode === timelineTouchMode . singleTap ) {
704
704
timeline . _touchMode = timelineTouchMode . scrub ;
705
- timeline . _handleTouchMove ( e ) ;
705
+ timeline . _onTouchMove ( e ) ;
706
706
} else if ( timeline . _touchMode === timelineTouchMode . scrub ) {
707
- timeline . _handleTouchMove ( e ) ;
707
+ timeline . _onTouchMove ( e ) ;
708
708
}
709
709
timeline . _mouseMode = timelineMouseMode . touchOnly ;
710
710
if ( len !== 1 ) {
@@ -790,4 +790,4 @@ define([
790
790
} ;
791
791
792
792
return Timeline ;
793
- } ) ;
793
+ } ) ;
You can’t perform that action at this time.
0 commit comments