Skip to content
This repository has been archived by the owner on Apr 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #140 from arangas/fix-win-disablescroll
Browse files Browse the repository at this point in the history
Corrected signature of disableScroll function in Windows KeyboardProxy
  • Loading branch information
tlancina committed Oct 9, 2015
2 parents 351a849 + 68dd852 commit 5f178e0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/windows/KeyboardProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ inputPane.addEventListener('showing', function(e) {
cordova.plugins.Keyboard.isVisible = true;
});

module.exports.disableScroll = function (win, fail, args) {
var disable = args[0];
module.exports.disableScroll = function (disable) {
keyboardScrollDisabled = disable;
};

Expand Down

0 comments on commit 5f178e0

Please sign in to comment.