You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
552 B

var argscheck = require('cordova/argscheck'),
utils = require('cordova/utils'),
exec = require('cordova/exec');
var Keyboard = function() {
};
Keyboard.hideKeyboardAccessoryBar = function(hide) {
return null;
};
Keyboard.close = function() {
return null;
};
Keyboard.show = function() {
return null;
};
Keyboard.disableScroll = function(disable) {
return null;
};
/*
Keyboard.styleDark = function(dark) {
exec(null, null, "Keyboard", "styleDark", [dark]);
};
*/
Keyboard.isVisible = false;
module.exports = Keyboard;