easyproctor 0.0.8 → 0.0.9

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.
Files changed (2) hide show
  1. package/README.md +8 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,6 +24,14 @@ import { useProctoring } from "easyproctor";
24
24
  const { start, finish, pause, resume, onLostFocus } = useProctoring("e276b448-cbee-48ae-b82c-b493aa18166e");
25
25
  ```
26
26
 
27
+ Via CDN: A função "useProctoring" é injetada para ser utilizada globalmente
28
+ ```html
29
+ <script src="https://cdn.jsdelivr.net/npm/easyproctor/unpkg/easyproctor.min.js"></script>
30
+ <script>
31
+ const { start, finish, pause, resume, onLostFocus } = useProctoring("cac34c6d-63ec-4f86-b5b0-bdeb52e8c146");
32
+ </script>
33
+ ```
34
+
27
35
  ## Exemplo completo
28
36
 
29
37
  ```html
@@ -79,15 +87,6 @@ const { start, finish, pause, resume, onLostFocus } = useProctoring("e276b448-cb
79
87
  </html>
80
88
  ```
81
89
 
82
-
83
- Via CDN: A função "useProctoring" é injetada para ser utilizada globalmente
84
- ```html
85
- <script src="https://cdn.jsdelivr.net/npm/easyproctor/unpkg/easyproctor.min.js"></script>
86
- <script>
87
- const { start, finish, pause, resume, onLostFocus } = useProctoring("cac34c6d-63ec-4f86-b5b0-bdeb52e8c146");
88
- </script>
89
- ```
90
-
91
90
  ## API
92
91
  ```javascript
93
92
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyproctor",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Modulo web de gravação do EasyProctor",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",