Skip to content

Instantly share code, notes, and snippets.

@trunalb
Created May 3, 2012 19:57
Show Gist options
  • Save trunalb/2588826 to your computer and use it in GitHub Desktop.
Save trunalb/2588826 to your computer and use it in GitHub Desktop.
Config code
getConfig : function() {
//Default config
var config = {
size : 3,
maxVisibleOnOneSide : 1,
};
//Update the config based on device
if($isDesktop || $native.isNative() && $os.ipad) {
//detect if its ipad1 or ipad2
if($isDesktop || $native.getDeviceVersion() > 1) {
config.size = 7;
config.maxVisibleOnOneSide = 2;
}
}
return config;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment