Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nojs/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ NoJS.store // Access global stores
NoJS.notify() // Flush UI updates after external mutation
NoJS.router // push(), replace(), back(), forward()
NoJS.locale // Get/set current locale
NoJS.version // "1.15.0"
NoJS.version // current framework version string
NoJS.CANCEL // Interceptor sentinel: cancel request
NoJS.RESPOND // Interceptor sentinel: short-circuit with response
NoJS.REPLACE // Interceptor sentinel: replace response data
Expand Down Expand Up @@ -701,7 +701,7 @@ All paths relative to `nojs/references/`:

| Property | Value |
|----------|-------|
| **Version** | 1.15.0 |
| **Version** | 1.20.0 |
| **Website** | <https://no-js.dev/> |
| **CDN (core)** | `https://cdn.no-js.dev/` |
| **CDN (elements)** | `https://cdn-elements.no-js.dev/` |
Expand Down
2 changes: 1 addition & 1 deletion nojs/references/core/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ Setting the base URL after initialization triggers re-evaluation of any active f
Read-only string with the current framework version.

```javascript
console.log(NoJS.version); // "1.14.1"
console.log(NoJS.version); // current framework version string
```

---
Expand Down
2 changes: 1 addition & 1 deletion nojs/references/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dt.stores // Object — snapshot of all stores { name: { ...data } }
dt.config // Object — shallow copy of current framework config
dt.refs // Object — copy of all ref-registered elements
dt.router // Object — live router instance (or null)
dt.version // String — framework version (e.g., "1.14.1")
dt.version // String — current framework version
dt.plugins // Map — copy of installed plugins (name -> { plugin, options })
dt.globals // Object — copy of plugin globals
```
Expand Down