Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kenwheeler committed Oct 8, 2015
1 parent c3e9603 commit a77e277
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ var Carousel = _react2['default'].createClass({
return {
onTouchStart: function onTouchStart(e) {
self.touchObject = {
startX: event.touches[0].pageX,
startY: event.touches[0].pageY
startX: e.touches[0].pageX,
startY: e.touches[0].pageY
};
},
onTouchMove: function onTouchMove(e) {
Expand Down Expand Up @@ -451,7 +451,7 @@ var Carousel = _react2['default'].createClass({
this.setDimensions();
},

onReadyStateChange: function onReadyStateChange(event) {
onReadyStateChange: function onReadyStateChange() {
this.setDimensions();
},

Expand Down

0 comments on commit a77e277

Please sign in to comment.