-
-
Save zachinglis/1b25557eef590c5bdf8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$list = $('.collections__list'); | |
$item = $list.find('.list__item--is-selected'); | |
$prev = $item.prev(); | |
if ($(window).width() < 700) { | |
// collections put whatever collection is selected at top of list on mobile | |
$list.prependTo('.collections__list'); | |
} | |
// collections put whatever collection is selected at top of list on mobile | |
$(window).resize(function() { | |
if ($(window).width() < 700) { | |
// collections put whatever collection is selected at top of list on mobile | |
$prev.after($item); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment