Created
August 17, 2018 23:08
-
-
Save carmoreira/8b5c9c0d38761bf44f97e29445cbbb90 to your computer and use it in GitHub Desktop.
Interactive World Maps: Open new URL only on mobile
This file contains 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
jQuery( document ).ready(function() { | |
var isMobile = window.matchMedia("only screen and (max-width: 760px)"); | |
if (isMobile.matches) { | |
iwmparam[0]['action'] = 'i_map_action_open_url_new'; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment