@courseecho/ai-widget-jquery 1.0.2 → 1.0.3
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 +14 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,21 +68,19 @@ $('#widget').aiChatWidget({ /* options */ });
|
|
|
68
68
|
|
|
69
69
|
## 📦 CDN URLs
|
|
70
70
|
|
|
71
|
-
**
|
|
71
|
+
**CourseEcho CDN (Recommended):**
|
|
72
72
|
```html
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
<!-- Specific version -->
|
|
77
|
-
<script src="https://unpkg.com/@courseecho/ai-widget-jquery@1.0.1/dist/ai-widget-jquery.js"></script>
|
|
73
|
+
<script src="https://cdn.courseecho.com/ai-widget-jquery.js"></script>
|
|
74
|
+
```
|
|
78
75
|
|
|
79
|
-
|
|
80
|
-
|
|
76
|
+
**unpkg (Alternative):**
|
|
77
|
+
```html
|
|
78
|
+
<script src="https://unpkg.com/@courseecho/ai-widget-jquery/dist/ai-widget-jquery.js"></script>
|
|
81
79
|
```
|
|
82
80
|
|
|
83
|
-
**jsDelivr:**
|
|
81
|
+
**jsDelivr (Alternative):**
|
|
84
82
|
```html
|
|
85
|
-
<script src="https://cdn.jsdelivr.net/npm/@courseecho/ai-widget-jquery
|
|
83
|
+
<script src="https://cdn.jsdelivr.net/npm/@courseecho/ai-widget-jquery/dist/ai-widget-jquery.js"></script>
|
|
86
84
|
```
|
|
87
85
|
|
|
88
86
|
## 🎯 API Methods
|
|
@@ -386,12 +384,13 @@ MIT © 2026 CourseEcho
|
|
|
386
384
|
- 📖 Docs: https://courseecho.com/docs
|
|
387
385
|
- 🐛 Issues: [GitHub Issues](https://github.com/courseecho/ai-widget-sdk/issues)
|
|
388
386
|
- 💬 Chat: [Discord](https://discord.gg/courseecho)
|
|
387
|
+
- 📚 Full Guide: [Script Tag Integration](https://github.com/courseecho/ai-widget-sdk/blob/main/SCRIPT_TAG_USAGE.html)
|
|
389
388
|
|
|
390
389
|
---
|
|
391
390
|
|
|
392
391
|
**Other frameworks:**
|
|
393
|
-
- [React](
|
|
394
|
-
- [Vue 3](
|
|
395
|
-
- [Angular 19+](
|
|
396
|
-
- [Node.js](
|
|
397
|
-
- [Core SDK](
|
|
392
|
+
- [React](https://www.npmjs.com/package/@courseecho/ai-widget-react)
|
|
393
|
+
- [Vue 3](https://www.npmjs.com/package/@courseecho/ai-widget-vue)
|
|
394
|
+
- [Angular 19+](https://www.npmjs.com/package/@courseecho/ai-widget-angular)
|
|
395
|
+
- [Node.js](https://www.npmjs.com/package/@courseecho/ai-client-node)
|
|
396
|
+
- [Core SDK](https://www.npmjs.com/package/@courseecho/ai-core-sdk)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@courseecho/ai-widget-jquery",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "jQuery plugin for AI Chat Widget - enables vanilla JavaScript/HTML integration via npm or script tag",
|
|
5
5
|
"main": "dist/ai-widget-jquery.cjs",
|
|
6
6
|
"module": "dist/ai-widget-jquery.mjs",
|