Skip to content

Commit

Permalink
🐛 🐛 Fix not being able to change modifiers of inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMyzrailGorynych committed Jun 15, 2024
1 parent 019a13d commit aeb1437
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions app/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v5.0.1

*Sat Jun 15 2024*

* 🐛 Fix not being able to change modifiers of inputs.

## v5.0.0

*Sat Jun 15 2024*
Expand Down
4 changes: 2 additions & 2 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"main": "index.html",
"name": "ctjs",
"description": "ct.js — a free 2D game engine",
"version": "5.0.0",
"version": "5.0.1",
"homepage": "https://ctjs.rocks/",
"author": {
"name": "Cosmo Myzrail Gorynych",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ctjsbuildenvironment",
"version": "5.0.0",
"version": "5.0.1",
"description": "",
"directories": {
"doc": "docs"
Expand Down
2 changes: 1 addition & 1 deletion src/node_requires/riotMixins/wire.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const wire = (that: IRiotTag, field: string, update: boolean) => (e: InputEvent)
}
root = that;
if (way[0] === 'global' || way[0] === 'window') {
root = global;
root = window;
way.shift();
} else if (way[0] === 'this') {
way.shift();
Expand Down

0 comments on commit aeb1437

Please sign in to comment.