main added

This commit is contained in:
arnaucode
2017-02-18 12:17:52 +01:00
parent 0ef2b84b13
commit b5f4ee6bc3
254 changed files with 33106 additions and 19 deletions

View File

@@ -0,0 +1,34 @@
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;