Skip to content

Instantly share code, notes, and snippets.

@jclecas
Last active December 7, 2016 16:22
Show Gist options
  • Save jclecas/ba965bf427d0cd992cdd922deb891ffe to your computer and use it in GitHub Desktop.
Save jclecas/ba965bf427d0cd992cdd922deb891ffe to your computer and use it in GitHub Desktop.
Move properly the toolbar in the right section in fonction of window size
if (jQuery(window).width() > 720) {
jQuery('.category-toolbar-left').prepend(jQuery('.toolbar'));
} else {
jQuery('.product-listing-container').prepend(jQuery('.toolbar'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment