Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/32ac384538c4d239d95b5b5e8f945f8c to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/32ac384538c4d239d95b5b5e8f945f8c to your computer and use it in GitHub Desktop.
/**
* Make price widget draggable on touch devices.
*/
function wb_load_touch_punch_js() {
global $version;
wp_enqueue_script( 'jquery-ui-widget' );
wp_enqueue_script( 'jquery-ui-mouse' );
wp_enqueue_script( 'jquery-ui-slider' );
wp_register_script( 'woo-jquery-touch-punch', get_stylesheet_directory_uri() . '/js/jquery.ui.touch-punch.min.js', array( 'jquery' ), $version, true );
wp_enqueue_script( 'woo-jquery-touch-punch' );
}
add_action( 'wp_enqueue_scripts', 'wb_load_touch_punch_js', 35 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment