Wondering if anyone has had luck with the ionic keyboard plugin on ios9? I can’t seem to get it to close when using
cordova.plugins.Keyboard.close()
I saw an issue here, but no response on github
Wondering if anyone has had luck with the ionic keyboard plugin on ios9? I can’t seem to get it to close when using
cordova.plugins.Keyboard.close()
I saw an issue here, but no response on github
Well I found that I didn’t declare it in my controller, once I did that it worked
module.controller(‘MyCtrl’, function($scope, $cordovaKeyboard) {
}
http://ngcordova.com/docs/plugins/keyboard/
The github docs do not list this step, so someone else may forget it