Skip to content

Commit

Permalink
m: fix a typo during porting from up stream
Browse files Browse the repository at this point in the history
  • Loading branch information
sencenan committed Apr 1, 2016
1 parent 8d674e3 commit 2f3339b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
Release Notes
=============

0.2.15
------

Bug fix: fixes typo

0.2.14
------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-themeablebrowser",
"version": "0.2.14",
"version": "0.2.15",
"description": "Cordova ThemeableBrowser Plugin",
"cordova": {
"id": "cordova-plugin-themeablebrowser",
Expand Down
7 changes: 4 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
under the License.
-->

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-themeablebrowser"
version="0.2.14">
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-themeablebrowser"
version="0.2.15">

<name>ThemeableBrowser</name>
<description>Cordova ThemeableBrowser Plugin</description>
Expand Down
4 changes: 2 additions & 2 deletions src/ios/CDVThemeableBrowser.m
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ - (void)openInCordovaWebView:(NSURL*)url withOptions:(NSString*)options
#else
if ([self.commandDelegate URLIsWhitelisted:url]) {
[self.webView loadRequest:request];
} else { // this assumes the InAppBrowser can be excepted from the white-list
[self openInInAppBrowser:url withOptions:options];
} else { // this assumes the openInThemeableBrowser can be excepted from the white-list
[self openInThemeableBrowser:url withOptions:options];
}
#endif
}
Expand Down

0 comments on commit 2f3339b

Please sign in to comment.