Skip to content

Commit

Permalink
Deploying to gh-pages from @ b9e61e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelZubkov committed Dec 18, 2023
1 parent f2b82a3 commit 32a4499
Show file tree
Hide file tree
Showing 14 changed files with 34 additions and 10 deletions.
1 change: 1 addition & 0 deletions node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1468,6 +1468,7 @@ declare namespace $ {
target(): string;
file_name(): string;
current(): boolean;
relation(): string;
event_click(event?: any): any;
click(event?: any): any;
}
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -4763,7 +4763,8 @@ var $;
title: this.hint_safe(),
target: this.target(),
download: this.file_name(),
mol_link_current: this.current()
mol_link_current: this.current(),
rel: this.relation()
};
}
sub() {
Expand Down Expand Up @@ -4798,6 +4799,9 @@ var $;
current() {
return false;
}
relation() {
return "";
}
event_click(event) {
if (event !== undefined)
return event;
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4763,7 +4763,8 @@ var $;
title: this.hint_safe(),
target: this.target(),
download: this.file_name(),
mol_link_current: this.current()
mol_link_current: this.current(),
rel: this.relation()
};
}
sub() {
Expand Down Expand Up @@ -4798,6 +4799,9 @@ var $;
current() {
return false;
}
relation() {
return "";
}
event_click(event) {
if (event !== undefined)
return event;
Expand Down
6 changes: 5 additions & 1 deletion node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4755,7 +4755,8 @@ var $;
title: this.hint_safe(),
target: this.target(),
download: this.file_name(),
mol_link_current: this.current()
mol_link_current: this.current(),
rel: this.relation()
};
}
sub() {
Expand Down Expand Up @@ -4790,6 +4791,9 @@ var $;
current() {
return false;
}
relation() {
return "";
}
event_click(event) {
if (event !== undefined)
return event;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions node.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ $mol_link $mol_view
target <= target \_self
download <= file_name \
mol_link_current <= current false
rel <= relation \
sub /$mol_view_content
<= title
arg *
Expand Down
1 change: 1 addition & 0 deletions web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,7 @@ declare namespace $ {
target(): string;
file_name(): string;
current(): boolean;
relation(): string;
event_click(event?: any): any;
click(event?: any): any;
}
Expand Down
2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion web.js

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

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4337,7 +4337,8 @@ var $;
title: this.hint_safe(),
target: this.target(),
download: this.file_name(),
mol_link_current: this.current()
mol_link_current: this.current(),
rel: this.relation()
};
}
sub() {
Expand Down Expand Up @@ -4372,6 +4373,9 @@ var $;
current() {
return false;
}
relation() {
return "";
}
event_click(event) {
if (event !== undefined)
return event;
Expand Down
1 change: 1 addition & 0 deletions web.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ $mol_link $mol_view
target <= target \_self
download <= file_name \
mol_link_current <= current false
rel <= relation \
sub /$mol_view_content
<= title
arg *
Expand Down

0 comments on commit 32a4499

Please sign in to comment.