| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
| |
* Clean out dom
* Clean out dom
|
|
|
|
|
| |
* Add all missing css properties
* remove extra space
|
|
|
| |
See: https://developer.mozilla.org/en-US/docs/Web/API/Element/hasAttribute
|
|
|
| |
See: https://developer.mozilla.org/en-US/docs/Web/API/Selection
|
|
|
| |
https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
|
|
|
| |
Just adds a single new css atribute, see: https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path .
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- content attribute to access HTML template element:
https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement/content
- ownerDocument to access the owning document from a DOM Node:
https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument
- outerHTML to get/set the outer HTML representation of a Node:
https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument
- createComment() to create comment Nodes:
https://developer.mozilla.org/en-US/docs/Web/API/Document/createComment
- querySelector() and querySelectorAll() on Nodes:
https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector
https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll
|
| |
|
|
|
|
| |
* move since from inclrtl to std/private/since
* move since import in system below for HCR
|
|
|
|
|
| |
* add FileReader to js dom
* minor improvement
Co-authored-by: cooldome <ariabushenko@bk.ru>
|
|
|
| |
Fixes jsffi usage example in doc
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add jsdomparser
* Add jsdomparser
* Add jsdomparser
* https://github.com/nim-lang/Nim/pull/13920#issuecomment-610727142
* https://github.com/nim-lang/Nim/pull/13920#issuecomment-610727142
* https://github.com/nim-lang/Nim/pull/13920#issuecomment-610727142
* https://github.com/nim-lang/Nim/pull/13920#discussion_r405932909
* https://github.com/nim-lang/Nim/pull/13920#discussion_r406502592
|
|
|
|
|
|
| |
* Improve jsconsole adding the rest of the stable api as documented on the standard at https://developer.mozilla.org/docs/Web/API/Console
* Improve jsconsole, add runnableexamples
* Simplify jsconsole
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add more JS stuff to dom.nim
* Make all links to docs doc comments.
* Fix minor textContent * space.
* Remove Selection object.
* More work on docs.
* Fixing links.
* Made the links be "see <docs>".
|
|
|
|
|
|
|
|
| |
* scrollTop must be assignable
Make scrollTop settable
* add missing export
|
|
|
| |
Add "origin" to window location: https://www.w3schools.com/jsref/prop_loc_origin.asp
|
|
|
|
|
|
| |
Note that contrary to what docgen.rst currently says, the ids have
to match exactly or else most web browsers will not jump to the
intended symbol.
|
|
|
|
| |
standard at https://developer.mozilla.org/docs/Web/API/Console (#12440)
|
| |
|
|
|
|
|
| |
* importjs symbol
* importjs warning message, minor warning fixes
|
| |
|
|
|
| |
I noticed this was missing. It has cross browser support: https://developer.mozilla.org/en-US/docs/Web/CSS/opacity#Browser_compatibility
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* DOM API: make compatible with Karax's requirements
* make tools\dochack.nim compile again
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* Add more Date wrappers to jscore
* Times cosmetic changes
- Improved docs
- Code wrapped at 80 chars
- Formatting fixes using nimpretty
- Remove some old deprecated procs
|
| |
|
| |
|
|
|
|
|
|
| |
* Try/Catch support for native JS exceptions
* Better tests
|
|
|
|
|
|
|
|
|
|
| |
* Minor fixes for asyncjs
Mark internal procedures as used
Allow .async. for more node kinds
Make .async. work for nkStmtList
* Fix logic error in both the async macros
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* rename SomeReal to SomeFloat
* added changelog entry
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Support code hot reloading for JavaScript projects
* Add some missing JavaScript symbols and APIs
* fix the Travis build
* (review changes) remove the js type from the standard library as it doesn't follow NEP-1
* more additions to the DOM module
* Follow NEP-1 in jsffi; spell 'hot code reloading' correctly
* introduce a jscore module
* Document jscore module.
* readded js type
* Remove the '$' operator that doesn't behave
|
|
|
| |
Add window.performance, window.performance.now(), window.devicePixelRatio, window.scrollX and Y, style.overflowX and Y, node.getBoundingRect.
|
| |
|
| |
|