cordova-plugin-inappbrowser
Advanced tools
Comparing version 0.2.4 to 0.2.5
{ | ||
"name": "cordova-plugin-inappbrowser", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "Cordova InAppBrowser Plugin", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -51,2 +51,8 @@ <!-- | ||
* CB-5021 Make it safe to call close() multiple times | ||
>>>>>>> dev | ||
### 0.2.5 (Dec 4, 2013) | ||
* Remove merge conflict tag | ||
* [CB-4724] fixed UriFormatException | ||
* add ubuntu platform | ||
* CB-3420 WP feature hidden=yes implemented | ||
* Added amazon-fireos platform. Change to use amazon-fireos as the platform if user agent string contains 'cordova-amazon-fireos' |
@@ -23,3 +23,5 @@ /* | ||
var PLAT; | ||
if (/Android/.exec(navigator.userAgent)) { | ||
if (/cordova-amazon-fireos/.exec(navigator.userAgent)) { | ||
PLAT = 'amazon-fireos'; | ||
}else if (/Android/.exec(navigator.userAgent)) { | ||
PLAT = 'android'; | ||
@@ -65,3 +67,3 @@ } else if (/(iPad)|(iPhone)|(iPod)/.exec(navigator.userAgent)) { | ||
function backHome() { | ||
if (window.device && device.platform && device.platform.toLowerCase() == 'android') { | ||
if (window.device && device.platform && (device.platform.toLowerCase() == 'android' || device.platform.toLowerCase() == 'amazon-fireos')) { | ||
navigator.app.backHistory(); | ||
@@ -68,0 +70,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
221845
32
575