Rubens Mariuzzo
Rubens Mariuzzo
Follow [Spectre.css loading component](https://picturepan2.github.io/spectre/utilities.html#loading).
Follow [Spectre.css divider component](https://picturepan2.github.io/spectre/utilities.html#divider).
Follow [Spectre.css tooltip component](https://picturepan2.github.io/spectre/components.html#tooltips).
Follow [Spectre.css nav component](https://picturepan2.github.io/spectre/components.html#navs).
Follow [Spectre.css menus component](https://picturepan2.github.io/spectre/components.html#menus).
Follow [Spectre.css empty states component](https://picturepan2.github.io/spectre/components.html#empty).
Follow [Spectre.css chips component](https://picturepan2.github.io/spectre/components.html#chips).
- Fixed comments styles from `#` to `//`. - Other minor changes for consistency.
If I have the following markup: ``` Hello ``` It will not render correclty since the `ó` is not correctly escaped. But it will work fine if I replace `ó`...
Currently to use the DOM Navigator we do: ``` js new DomNavigator( document.querySelector('#grid') ); ``` Could we alos provide optionally a selector allowing both: ``` js new DomNavigator( document.querySelector('#grid') );...