In banner, if i include force= ios banner not showing.
because there is a condition in the constructor.
// - If we dont have app id in meta, dont display the banner
// - If opened in safari IOS, dont display the banner
if (!this.appId && agent.os.name === 'IOS' &&
agent.browser.name === 'Safari') {
return;
}
In banner, if i include force= ios banner not showing.
because there is a condition in the constructor.
How can i disable this condition ?