This Plunker demonstrates the fix which is to call $mdGestureProvider.skipClickHijack();.
angular.module('myapp', ['ngMaterial', 'ngMessages'])
.config(function($mdGestureProvider) {
// For mobile devices without jQuery loaded, do not
// intercept click events during the capture phase.
$mdGestureProvider.skipClickHijack();
});
@Splaktar Thank you very much for the help! I'm curious. Based on your comment in the code, are you saying that if we are using jquery, then that shouldn't be a problem?
That comment is from an old example, I don't know how jQuery being used or not creates a problem. You can certainly test it out on your app.
Most helpful comment
This Plunker demonstrates the fix which is to call
$mdGestureProvider.skipClickHijack();.