The user-agent string for an iPad running iOS 15.3.1:

|
isIOS = ua.indexOf('ipad') > -1 || ua.indexOf('iphone') > -1, |
|
exports.requestPermission = function (callback, scope) { |
|
if (isIOS) { |
|
this.exec('request', null, callback, scope); |
|
} else { |
|
this.createCallbackFn(callback, scope)(true); |
|
} |
|
}; |
The user-agent string for an iPad running iOS 15.3.1:
cordova-plugin-badge/www/badge.js
Line 21 in 8e870f7
cordova-plugin-badge/www/badge.js
Lines 144 to 150 in 8e870f7