5.0.6 • Published 9 years ago

bc-phone-number v5.0.6

Weekly downloads
42
License
MIT
Repository
github
Last release
9 years ago

bc-phone-number Build Status

Installation

Bower

bower install --save bc-phone-number
angular.module('myApp', ['bcPhoneNumber'])

NPM

npm install --save bc-phone-number
angular.module('myApp', [require('bc-phone-number')])

Other (not recommended)

Just download the dist folder.

Usage

<bc-phone-number ng-model='theNumber' default-country='us' preferred-countries='us gb ca' is-valid='isValid'></bc-phone-number>
angular.module('myModule', ['bcPhoneNumber', function(bcPhoneNumber) {

  scope.formattedNumber = bcPhoneNumber.format('966501234567');
  scope.isValid = bcPhoneNumber.isValid(scope.formattedNumber);
}]);

Note thatng-model and is-valid are scope variables.