Skip to content

Commit

Permalink
Pointer types are strings
Browse files Browse the repository at this point in the history
  • Loading branch information
kborchers committed Mar 26, 2013
1 parent 9828ac5 commit 5b2f7b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions external/pointer.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(function( $ ) {
var POINTER_TYPE_UNAVAILABLE = 1,
POINTER_TYPE_TOUCH = 2,
POINTER_TYPE_PEN = 3,
POINTER_TYPE_MOUSE = 4;
var POINTER_TYPE_UNAVAILABLE = "1",
POINTER_TYPE_TOUCH = "2",
POINTER_TYPE_PEN = "3",
POINTER_TYPE_MOUSE = "4";

function processEvent( event, pointerType ) {
var prop,
Expand Down

0 comments on commit 5b2f7b5

Please sign in to comment.