append-out.nv
· 371 B · Text
原始檔案
Playground
|| '@include' lib/platforms/browser_dom.nv
|| :DOM: ( <query #code-actions <@after #out or textarea id = out value = [] > > <query #out )
| :first: :reversed: $x | :append: $x
| :append: \n :current dom element: $o?| :@js: $o.value += '\n';
| :append: \t :current dom element: $o?| :@js: $o.value += '\t';
| :append: $x :current dom element: $o?| :@js: $o.value += $x;
1 | || '@include' lib/platforms/browser_dom.nv |
2 | |
3 | || :DOM: ( <query #code-actions <@after #out or textarea id = out value = [] > > <query #out ) |
4 | |
5 | | :first: :reversed: $x | :append: $x |
6 | | :append: \n :current dom element: $o?| :@js: $o.value += '\n'; |
7 | | :append: \t :current dom element: $o?| :@js: $o.value += '\t'; |
8 | | :append: $x :current dom element: $o?| :@js: $o.value += $x; |