camera icon indicating copy to clipboard operation
camera copied to clipboard

Missing brackets

Open Journeytojah opened this issue 8 years ago • 1 comments

Hello, I believe you are missing a pair of brackets here:

modules: [ module: 'camera', position: 'top_center', config: selfieInterval: 3, // Time interval in seconds before the photo will be taken. emailConfig: { service: 'Hotmail', // Email provider to use to send email with a photo. auth: { user: '[email protected]', // Your email account pass: '' // Your password for email account } } ]

should be:

modules: [ { module: 'camera', position: 'top_center', config: selfieInterval: 3, // Time interval in seconds before the photo will be taken. emailConfig: { service: 'Hotmail', // Email provider to use to send email with a photo. auth: { user: '[email protected]', // Your email account pass: '' // Your password for email account } } } ]

Journeytojah avatar Jan 25 '17 23:01 Journeytojah

Use this works for me. { module: 'camera', position: 'top_center', config: { selfieInterval: 3,
emailConfig: { service: 'Gmail', auth: { user: '<>', pass: '<>'
}, }, } },

ganapathyg981 avatar Jan 08 '19 06:01 ganapathyg981