international-phone-number icon indicating copy to clipboard operation
international-phone-number copied to clipboard

AngularJS directive implementing intl-tel-input (https://github.com/Bluefieldscom/intl-tel-input)

Results 66 international-phone-number issues
Sort by recently updated
recently updated
newest added

Some time I need to pass the country selected along with the phone number. What's your though on that? I could submit a pull request but I need to make...

We are using your directive as <input value="+1" type="tel" international-phone-number auto-hide-dial-code="false" class="phone" name="phoneCountryCode" ng-model="phoneCountryCode" required> When we invoke for e.g. $scope.phoneCountryCode = "+7" (via appropriate $scope$apply call) from controller code...

Hey, Thanks for implementing this!... I was looking to do it this week and was stumped since never implemented a jquery plugin like this as a directive. Just a suggestion...

**Step to reproduce**: - Pass '+380989067571' as model value **Actual Result**: Input is blank **Expected Result**: Should be populated input with 0989067571 value and country Ukraine More: http://plnkr.co/edit/BsBglD4Xv2IL1UxslllI?p=preview

After make a `grunt build` into the project i'm getting this error `Failed to instantiate module internationalPhoneNumber due to: Error: [$injector:nomod] Module 'internationalPhoneNumber' is not available!`

In versions of jackocnr/intl-tel-input (>= 7) selectCountry is renamed to setCountry, thus your country attr is not working

Hello! Thank you for this great module! However, consider this code: ``` html ``` ``` javascript $scope.formData = { phoneNumber: '+71231234567' }; ``` For some reason the `ngModel` of the...