Skip to content

Instantly share code, notes, and snippets.

@DerekMarcinyshyn
Created April 12, 2013 06:05
Show Gist options
  • Save DerekMarcinyshyn/5369812 to your computer and use it in GitHub Desktop.
Save DerekMarcinyshyn/5369812 to your computer and use it in GitHub Desktop.
Roots Theme touchscreen fix
/* touchscreen fix */
Modernizr.load({
test: Modernizr.details,
nope: '/wp-content/themes/revelstokechamber/assets/js/vendor/jquery.details.min.js',
complete : function () {
$(document).ready(function(){touchFix();});
}
});
function touchFix(){
$('body')
.on('touchstart.dropdown', '.dropdown-menu', function (e) {e.stopPropagation();})
.on('touchstart.dropdown', '.dropdown-submenu', function (e) {e.preventDefault();});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment