IS_WEB function
Implementation
bool IS_WEB(context){
bool fullWidth = IS_FULL_WIDTH(context);
bool portrait = IS_PORTRAIT(context);
return (kIsWeb && fullWidth) ? true : false;
}
bool IS_WEB(context){
bool fullWidth = IS_FULL_WIDTH(context);
bool portrait = IS_PORTRAIT(context);
return (kIsWeb && fullWidth) ? true : false;
}