fittingBannerSizesLandscape
Overview
Returns the array of banner sizes that will fit on a given device in landscape screen orientation.
Syntax
fittingBannerSizesLandscape(callback)
callback (REQUIRED)
Callback<String> Used to provide the function call result to JavaScript.
Parameters:
Array - Banner sizes best fitting current device.
Examples
AATKitCordova.fittingBannerSizesLandscape((result) => {
console.log("fittingBannerSizesLandscape " + result);
});
Last updated