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/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div id="videomail"></div>
|
|
10
10
|
<script src="/js/videomail-client.js"></script>
|
|
11
11
|
<script>
|
|
12
|
-
var videomailClient = new VideomailClient({
|
|
12
|
+
var videomailClient = new VideomailClient.default({
|
|
13
13
|
verbose: true,
|
|
14
14
|
adjustFormOnBrowserError: true,
|
|
15
15
|
fakeUaString: "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)",
|
package/prototype/bad_ios.html
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div id="videomail"></div>
|
|
10
10
|
<script src="/js/videomail-client.js"></script>
|
|
11
11
|
<script>
|
|
12
|
-
var videomailClient = new VideomailClient({
|
|
12
|
+
var videomailClient = new VideomailClient.default({
|
|
13
13
|
verbose: true,
|
|
14
14
|
adjustFormOnBrowserError: true,
|
|
15
15
|
fakeUaString:
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
|
|
66
66
|
<script src="/js/videomail-client.js"></script>
|
|
67
67
|
<script>
|
|
68
|
-
var videomailClient = new VideomailClient({
|
|
68
|
+
var videomailClient = new VideomailClient.default({
|
|
69
69
|
verbose: true,
|
|
70
70
|
submitWithVideomail: true,
|
|
71
71
|
video: { limitSeconds: 120, width: 320, countdown: false },
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
<script src="/js/videomail-client.js"></script>
|
|
39
39
|
<script>
|
|
40
|
-
var videomailClient = new VideomailClient({
|
|
40
|
+
var videomailClient = new VideomailClient.default({
|
|
41
41
|
verbose: true,
|
|
42
42
|
enablePause: false,
|
|
43
43
|
video: { limitSeconds: 3600, width: 460, countdown: false },
|
package/prototype/entertain.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<div id="videomail"></div>
|
|
13
13
|
<script src="/js/videomail-client.js"></script>
|
|
14
14
|
<script>
|
|
15
|
-
var videomailClient = new VideomailClient({
|
|
15
|
+
var videomailClient = new VideomailClient.default({
|
|
16
16
|
verbose: true,
|
|
17
17
|
enableAutoPause: false,
|
|
18
18
|
disableSubmit: true,
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
performance issues and will use a lower one instead.
|
|
14
14
|
</p>
|
|
15
15
|
<div id="videomail"></div>
|
|
16
|
-
<script src="
|
|
17
|
-
<script>
|
|
18
|
-
var videomailClient = new VideomailClient({
|
|
16
|
+
<script src="./js/videomail-client.js"></script>
|
|
17
|
+
<script type="module">
|
|
18
|
+
var videomailClient = new VideomailClient.default({
|
|
19
19
|
verbose: true,
|
|
20
20
|
enableAutoPause: false,
|
|
21
21
|
disableSubmit: true,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div id="videomail"></div>
|
|
15
15
|
<script src="/js/videomail-client.js"></script>
|
|
16
16
|
<script>
|
|
17
|
-
var videomailClient = new VideomailClient({
|
|
17
|
+
var videomailClient = new VideomailClient.default({
|
|
18
18
|
// here you should enter your site name.
|
|
19
19
|
// if you do not have one, register it first here:
|
|
20
20
|
// www.videomail.io/whitelist
|
|
@@ -17502,7 +17502,7 @@ function wrappy (fn, cb) {
|
|
|
17502
17502
|
},{}],116:[function(_dereq_,module,exports){
|
|
17503
17503
|
module.exports={
|
|
17504
17504
|
"name": "videomail-client",
|
|
17505
|
-
"version": "8.
|
|
17505
|
+
"version": "8.3.0",
|
|
17506
17506
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17507
17507
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
17508
17508
|
"contributors": [
|
|
@@ -23947,8 +23947,11 @@ if (!navigator) {
|
|
|
23947
23947
|
// Ensures Videomail functionality is not broken on exotic browsers with shims.
|
|
23948
23948
|
(0, _standardize.default)(window, navigator);
|
|
23949
23949
|
}
|
|
23950
|
-
|
|
23951
|
-
|
|
23950
|
+
|
|
23951
|
+
// Provide both ways
|
|
23952
|
+
|
|
23953
|
+
// export { Client };
|
|
23954
|
+
var _default = exports.default = _client.default;
|
|
23952
23955
|
|
|
23953
23956
|
},{"./client":117,"./util/standardize":129,"@babel/runtime/helpers/interopRequireDefault":3}]},{},["videomail-client"])("videomail-client")
|
|
23954
23957
|
});
|