-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MS Surface touch events not recorded - scrollbars not moving in IE10/Metro #27
Comments
wow...looks like IE10 really pulled a 'microsoft': |
I don't have access to such a device but it looks like they have an emulator http://blogs.msdn.com/b/patricka/archive/2012/07/23/how-do-i-test-internet-explorer-10-touch-behavior-without-a-touch-device.aspx |
same on nokia lumia (windows phone 8) |
Hi mzubala , I have done some changes in jquery.custom-scrollbar.js and now it is working absolutely fine in IE 10 touch devices. Here is the solution. Just replace the jquery.custom-scrollbar.js code below code. (function ($) { $.fn.customScrollbar = function (options, args) {
} }) (function ($) { var types = ['DOMMouseScroll', 'mousewheel']; if ($.event.fixHooks) { $.event.special.mousewheel = {
}; $.fn.extend({
}); function handler(event) {
} })(jQuery); |
@mohit-infy Could you submit a pull request? |
Testing on MS Surface Pro w/Windows 8 Pro, in Internet Explorer 10 METRO mode.
jquery=1.10.2
scrollbars = latest
I've tried manipulating the '-ms-touch-action' CSS variable, but to no avail. Tested same page on iPad, worked flawlessly.
thanks! (great plugin, yo!)
The text was updated successfully, but these errors were encountered: