Skip to content

Commit 2f3339b

Browse files
committed
m: fix a typo during porting from up stream
1 parent 8d674e3 commit 2f3339b

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

RELEASENOTES.md

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
Release Notes
2222
=============
2323

24+
0.2.15
25+
------
26+
27+
Bug fix: fixes typo
28+
2429
0.2.14
2530
------
2631

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-themeablebrowser",
3-
"version": "0.2.14",
3+
"version": "0.2.15",
44
"description": "Cordova ThemeableBrowser Plugin",
55
"cordova": {
66
"id": "cordova-plugin-themeablebrowser",

plugin.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818
under the License.
1919
-->
2020

21-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
22-
id="cordova-plugin-themeablebrowser"
23-
version="0.2.14">
21+
<plugin
22+
xmlns="http://apache.org/cordova/ns/plugins/1.0"
23+
id="cordova-plugin-themeablebrowser"
24+
version="0.2.15">
2425

2526
<name>ThemeableBrowser</name>
2627
<description>Cordova ThemeableBrowser Plugin</description>

src/ios/CDVThemeableBrowser.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,8 @@ - (void)openInCordovaWebView:(NSURL*)url withOptions:(NSString*)options
334334
#else
335335
if ([self.commandDelegate URLIsWhitelisted:url]) {
336336
[self.webView loadRequest:request];
337-
} else { // this assumes the InAppBrowser can be excepted from the white-list
338-
[self openInInAppBrowser:url withOptions:options];
337+
} else { // this assumes the openInThemeableBrowser can be excepted from the white-list
338+
[self openInThemeableBrowser:url withOptions:options];
339339
}
340340
#endif
341341
}

0 commit comments

Comments
 (0)