ckbox 1.2.0 → 1.2.1
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/README.md +5 -3
- package/dist/ckbox.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles/ckbox.css +3 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -12,16 +12,17 @@ Using a build served from the CDN is the simplest and fastest way of embedding C
|
|
|
12
12
|
To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
|
|
13
13
|
|
|
14
14
|
```html
|
|
15
|
-
<script src="https://cdn.ckbox.io/CKBox/1.2.
|
|
15
|
+
<script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Quick implementation example:
|
|
19
19
|
|
|
20
20
|
```html
|
|
21
|
+
<!DOCTYPE html>
|
|
21
22
|
<html>
|
|
22
23
|
<head>
|
|
23
24
|
<meta charset="UTF-8" />
|
|
24
|
-
<script src="https://cdn.ckbox.io/CKBox/1.2.
|
|
25
|
+
<script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
|
|
25
26
|
</head>
|
|
26
27
|
<body>
|
|
27
28
|
<div id="ckbox"></div>
|
|
@@ -42,11 +43,12 @@ Quick implementation example:
|
|
|
42
43
|
The code snippet below presents the simplest scenario for integration of CKEditor 5 with CKBox. To read more about the integration, please refer to the [CKEditor 5 integration guide](https://ckeditor.com/docs/ckbox/latest/guides/configuration/ckeditor-integration.html).
|
|
43
44
|
|
|
44
45
|
```html
|
|
46
|
+
<!DOCTYPE html>
|
|
45
47
|
<html>
|
|
46
48
|
<head>
|
|
47
49
|
<meta charset="UTF-8" />
|
|
48
50
|
<script src="https://cdn.ckeditor.com/ckeditor5/35.3.1/classic/ckeditor.js"></script>
|
|
49
|
-
<script src="https://cdn.ckbox.io/CKBox/1.2.
|
|
51
|
+
<script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
|
|
50
52
|
</head>
|
|
51
53
|
<body>
|
|
52
54
|
<div id="editor"></div>
|