I'm developing a Hybrid App and I want my app to open a customized Numeric keypad that looks the same on all devices. Is there any AngularJS directive?
I ran into the same problem before as I needed a consistent Numeric Keypad that looks the same on all devices and I ended up creating one. You can find it on github:
It's a module composed of
angular.module('numericKeyboard').factory('numericKeyboardService',numericKeyboardService);
angular.module('numericKeyboard').directive('numericKeyboard', numericKeyboard);
angular.module('numericKeyboard').directive('numericKeyboardInput', numericKeyboardInput);