Skip to content

Commit 17adba0

Browse files
Update Elements links
1 parent c71d497 commit 17adba0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ domodel is front-end library that organizes the user interface into models (look
1616

1717
### Model
1818

19-
A model is a JSON representation of a DOM [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element).
19+
A model is a JSON representation of a DOM [Element](https://html.spec.whatwg.org/multipage/dom.html#htmlelement).
2020

2121
A model can also be used to refer to both the [Model](https://domodel.unificator.me/global.html#Model) and its [Binding](https://domodel.unificator.me/domodel/Binding.html) as a whole, that is a component (a search bar model for example).
2222

@@ -49,7 +49,7 @@ export default {
4949
}
5050
```
5151

52-
Notice the ``textContent`` property. You can set any [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) properties in this fashion.
52+
Notice the ``textContent`` property. You can set any [Element](https://html.spec.whatwg.org/multipage/dom.html#htmlelement) properties in this fashion.
5353

5454
> If you want to set an ``attribute`` use the attributes object property.
5555
@@ -58,7 +58,7 @@ The ``identifier`` allows your binding to track a model and manipulate it in wit
5858
#### Properties
5959
<a href="#model-properties"></a>
6060

61-
Most properties listed in your model comes from the [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) class.
61+
Most properties listed in your model comes from the [Element](https://html.spec.whatwg.org/multipage/dom.html#htmlelement) class.
6262

6363
It also includes:
6464

@@ -155,8 +155,8 @@ This method will be called immediately after your model is added to the DOM.
155155

156156
The following properties are made available from within the the instance of a [Binding](http://domodel.unificator.me/Binding.html):
157157

158-
- ``root`` Root [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) of your model.
159-
- ``identifier`` Hosts individual [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element) previously tagged in the definition of the model (see [Model properties](#model-properties)).
158+
- ``root`` Root [Element](https://html.spec.whatwg.org/multipage/dom.html#htmlelement) of your model.
159+
- ``identifier`` Hosts individual [Element](https://html.spec.whatwg.org/multipage/dom.html#htmlelement) previously tagged in the definition of the model (see [Model properties](#model-properties)).
160160

161161
### Methods
162162

0 commit comments

Comments
 (0)