Skip to content

Commit

Permalink
Add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Sep 14, 2015
1 parent 887025e commit c637e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/utils/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export function getPointerPosition(el, event) {

let boxY = box.top;
let boxX = box.left;
let pageY = event.pageY
let pageY = event.pageY;
let pageX = event.pageX;

if (event.changedTouches) {
Expand Down

0 comments on commit c637e04

Please sign in to comment.