Skip to content

Instantly share code, notes, and snippets.

@clrockwell
Created January 29, 2016 23:23
Show Gist options
  • Save clrockwell/faabe7870df33d3009d5 to your computer and use it in GitHub Desktop.
Save clrockwell/faabe7870df33d3009d5 to your computer and use it in GitHub Desktop.
Why oh why
switch(skus.length) {
case 4:
jQuery(skus[skus.length-1]).css('left', '217px').css('position','relative');
break;
case 5:
jQuery(skus[skus.length-1]).css('left', '109px').css('position','relative');
jQuery(skus[skus.length-2]).css('left', '109px').css('position','relative');
break;
default:
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment