Skip to content

Instantly share code, notes, and snippets.

@joshbuchea
Last active February 19, 2016 21:31
Show Gist options
  • Save joshbuchea/1adc8f71d6649271482e to your computer and use it in GitHub Desktop.
Save joshbuchea/1adc8f71d6649271482e to your computer and use it in GitHub Desktop.
Cordova getMediaURL() func
function getMediaURL(s) {
if(device.platform.toLowerCase() === "android") return "/android_asset/www/" + s;
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment