UNPKG

angular-keypad

Version:

An Angular directive that creates a numeric keypad.

9 lines (6 loc) 237 B
import { KeypadConfig } from './keypad.provider'; import { KeypadDirective } from './keypad.directive'; angular.module('bc.AngularKeypad', []) .provider('bcKeypadConfig', KeypadConfig) .directive('bcKeypad', KeypadDirective) ;