Don't cancel event chain on mousedown

This commit is contained in:
mcliment 2015-03-13 13:36:23 +01:00
parent d134fd0d15
commit 89bd4056b3

View File

@ -51,7 +51,7 @@
* Verify if the user is just touching on a device and return if so
*/
if(self.isTouch() && event.type === "mousedown") {
return false;
return;
}