We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying example from documentation:
https://www.npmjs.com/package/vcards-js#complete-example but with version 4.
` var vCard = vCardsJS();
vCard.version = '4' //set basic properties shown before vCard.firstName = 'Eric'; vCard.middleName = 'J'; vCard.lastName = 'Nesser'; vCard.uid = '69531f4a-c34d-4a1e-8922-bd38a9476a53'; vCard.organization = 'ACME Corporation'; vCard.workPhone = '312-555-1212';
` In version 4, the phone output:
TEL;VALUE=uri;TYPE="voice,work":tel:312-555-1212 Which is not showed correctly
TEL;VALUE=uri;TYPE="voice,work":tel:312-555-1212
When i use version 3, the output is TEL;TYPE=WORK,VOICE:312-555-1212 and it works as expected
TEL;TYPE=WORK,VOICE:312-555-1212
Am i doing something wrong or how can i use phone in version 4?
Thanks
The text was updated successfully, but these errors were encountered:
I am facing this same issue. when will this issue fixed? any idea.
Sorry, something went wrong.
@enesser can you look at this isuue. please
@RanaMuhammadAdnan No major platforms are v4 compatible, there’s nothing to be done.
@enesser I am using latest iOS mobile and Windows 10. I have same issue in both platforms. Can you please fix this issue?
No branches or pull requests
I am trying example from documentation:
https://www.npmjs.com/package/vcards-js#complete-example but with version 4.
`
var vCard = vCardsJS();
`
In version 4, the phone output:
TEL;VALUE=uri;TYPE="voice,work":tel:312-555-1212
Which is not showed correctly
When i use version 3, the output is
TEL;TYPE=WORK,VOICE:312-555-1212
and it works as expectedAm i doing something wrong or how can i use phone in version 4?
Thanks
The text was updated successfully, but these errors were encountered: