Skip to content

Commit

Permalink
AutoFadeIn option in open method
Browse files Browse the repository at this point in the history
  • Loading branch information
appfeel committed Jun 25, 2015
1 parent 7b7ecb0 commit 2df7cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/OverAppBrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ OverAppBrowser.prototype = {
}
};

module.exports = function(strUrl, originx,originy,width,height) {
module.exports = function(strUrl, originx,originy,width,height, isAutoFadeIn) {
strUrl = urlutil.makeAbsolute(strUrl);
var oab = new OverAppBrowser();
var cb = function(eventname) {
oab._eventHandler(eventname);
};

exec(cb, cb, "OverAppBrowser", "open", [strUrl, originx, originy, width, height]);
exec(cb, cb, "OverAppBrowser", "open", [strUrl, originx, originy, width, height, isAutoFadeIn]);
return oab;
};

0 comments on commit 2df7cd3

Please sign in to comment.