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

7 years ago
  1. var argscheck = require('cordova/argscheck'),
  2. utils = require('cordova/utils'),
  3. exec = require('cordova/exec');
  4. var Keyboard = function() {
  5. };
  6. Keyboard.hideKeyboardAccessoryBar = function(hide) {
  7. return null;
  8. };
  9. Keyboard.close = function() {
  10. return null;
  11. };
  12. Keyboard.show = function() {
  13. return null;
  14. };
  15. Keyboard.disableScroll = function(disable) {
  16. return null;
  17. };
  18. /*
  19. Keyboard.styleDark = function(dark) {
  20. exec(null, null, "Keyboard", "styleDark", [dark]);
  21. };
  22. */
  23. Keyboard.isVisible = false;
  24. module.exports = Keyboard;