9 lines
288 B
HTML
9 lines
288 B
HTML
<script>
|
|
'use strict';
|
|
|
|
window.onload = function() {
|
|
navigator.contacts.select(['name', 'email'], { multiple: true })
|
|
.then(results => parent.postMessage({ errorMsg: '' }, '*'))
|
|
.catch(exception => parent.postMessage({ errorMsg: exception.name }, '*'));
|
|
}
|
|
</script>
|