Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var windowSize = $j(window).innerWidth();
  2. var imgZoomHeight = $j(".product-image").height();
  3.  
  4. function zoomSwitch() {
  5.  
  6. if (windowSize >= 992) {
  7. zoomTints(imgZoomHeight);
  8. } else {
  9. zoomInner();
  10. }
  11. }
  12.  
  13. function zoomResizeSwitch() {
  14.  
  15. zoomSwitch();
  16.  
  17. $j(window).resize(function() {
  18.  
  19. zoomSwitch()
  20.  
  21. });
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement