Skip to content

Commit

Permalink
Add fade method
Browse files Browse the repository at this point in the history
  • Loading branch information
appfeel committed Jun 23, 2015
1 parent 7b14854 commit 35e3be1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions www/OverAppBrowser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//
// OverAppBrowser.js
// OverAppBrowser Cordova Plugin
//
Expand Down Expand Up @@ -32,7 +31,10 @@ OverAppBrowser.prototype = {
exec(null, null, "OverAppBrowser", "close", []);
},
show: function (eventname) {
exec(null, null, "OverAppBrowser", "show", []);
exec(null, null, "OverAppBrowser", "show", []);
},
fade: function (toAlpha, duration) {
exec(null, null, "OverAppBrowser", "fade", [toAlpha, duration]);
},
addEventListener: function (eventname,f) {
if (eventname in this.channels) {
Expand Down

0 comments on commit 35e3be1

Please sign in to comment.