Skip to content

Commit acbab2b

Browse files
committed
Merge branch 'develop'
2 parents 7f4b7e1 + 82a7df8 commit acbab2b

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="com.phonegap.plugins.oauthio"
5-
version="0.2.1">
5+
version="0.2.3">
66

77
<name>OAuth.io</name>
88

www/coffee/lib/oauth.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ module.exports = (window, document, jQuery, navigator) ->
177177
return
178178
, 1200 * 1000)
179179

180-
wnd = window.open(url, "_blank", 'location=no,toolbar=no')
180+
wnd = window.open(url, "_blank", 'clearsessioncache=yes,clearcache=yes')
181181

182182
wnd.addEventListener "loadstart", (ev) ->
183183
return if ev.url.substr(0, 17) isnt "http://localhost/"

www/dist/oauth.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module.exports = {
33
oauthd_url: "https://oauth.io",
44
oauthd_api: "https://oauth.io/api",
5-
version: "phonegap-0.2.1",
5+
version: "phonegap-0.2.3",
66
options: {}
77
};
88

@@ -224,7 +224,7 @@ module.exports = function(window, document, jQuery, navigator) {
224224
wnd.close();
225225
} catch (_error) {}
226226
}, 1200 * 1000);
227-
wnd = window.open(url, "_blank", 'location=no,toolbar=no');
227+
wnd = window.open(url, "_blank", 'clearsessioncache=yes,clearcache=yes');
228228
wnd.addEventListener("loadstart", function(ev) {
229229
var results;
230230
if (ev.url.substr(0, 17) !== "http://localhost/") {

www/dist/oauth.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/js/lib/oauth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ module.exports = function(window, document, jQuery, navigator) {
215215
wnd.close();
216216
} catch (_error) {}
217217
}, 1200 * 1000);
218-
wnd = window.open(url, "_blank", 'location=no,toolbar=no');
218+
wnd = window.open(url, "_blank", 'clearsessioncache=yes,clearcache=yes');
219219
wnd.addEventListener("loadstart", function(ev) {
220220
var results;
221221
if (ev.url.substr(0, 17) !== "http://localhost/") {

www/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oauth-js",
3-
"version": "0.2.1",
3+
"version": "0.2.3",
44
"description": "OAuth that just works",
55
"main": "dist/oauth.min.js",
66
"directories": {

0 commit comments

Comments
 (0)