videomail-client 8.2.2 → 8.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prototype/bad_browser.html +1 -1
- package/prototype/bad_ios.html +1 -1
- package/prototype/contact_form.html +1 -1
- package/prototype/correct_existing_videomail.html +1 -1
- package/prototype/correct_non_existing_videomail.html +1 -1
- package/prototype/direct_submit.html +1 -1
- package/prototype/entertain.html +1 -1
- package/prototype/experimental_audio.html +1 -1
- package/prototype/facing_mode_button.html +1 -1
- package/prototype/form_without_email.html +1 -1
- package/prototype/high_quality.html +3 -3
- package/prototype/invalid_site_name.html +1 -1
- package/prototype/js/videomail-client.js +6 -3
- package/prototype/js/videomail-client.min.js +1 -1
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/prototype/player_only.html +1 -1
- package/prototype/predefined.html +1 -1
- package/prototype/simple.html +1 -1
- package/prototype/simple_jpegs.html +1 -1
- package/prototype/user_media_on_record.html +1 -1
- package/prototype/videomail_optional_form.html +1 -1
- package/prototype/with_cc_and_bcc.html +1 -1
- package/src/js/index.js +4 -3
package/prototype/simple.html
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
<script src="/js/videomail-client.js"></script>
|
|
54
54
|
<script>
|
|
55
|
-
var videomailClient = new VideomailClient({
|
|
55
|
+
var videomailClient = new VideomailClient.default({
|
|
56
56
|
verbose: true,
|
|
57
57
|
video: { limitSeconds: 120, width: 320, countdown: false, stretch: true },
|
|
58
58
|
enableAutoValidation: false,
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
|
|
83
83
|
<script src="/js/videomail-client.js"></script>
|
|
84
84
|
<script>
|
|
85
|
-
var videomailClient = new VideomailClient({
|
|
85
|
+
var videomailClient = new VideomailClient.default({
|
|
86
86
|
verbose: true,
|
|
87
87
|
video: { limitSeconds: 120, width: 320, countdown: false },
|
|
88
88
|
selectors: {
|
package/src/js/index.js
CHANGED
|
@@ -8,7 +8,8 @@ if (!navigator) {
|
|
|
8
8
|
standardize(window, navigator);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
// Provide both ways
|
|
12
|
+
|
|
13
|
+
// export { Client };
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
module.exports = Client;
|
|
15
|
+
export default Client;
|