mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Remove useless if in js example
If the length is 0, then the forEach call does nothing anyway Could we remove the slice part as well ? If IE support is required, can’t we just use Array.prototype.forEach ? Can’t we just remove IE support all together to promote clean and up to date code ? Polyfills and code transpilation are here to help support IE
This commit is contained in:
parent
da784b2071
commit
895b77b3a9
@ -565,9 +565,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
// Get all "navbar-burger" elements
|
||||
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
|
||||
|
||||
// Check if there are any navbar burgers
|
||||
if ($navbarBurgers.length > 0) {
|
||||
|
||||
// Add a click event on each of them
|
||||
$navbarBurgers.forEach( el => {
|
||||
el.addEventListener('click', () => {
|
||||
@ -582,7 +579,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
{% endcapture %}
|
||||
|
Loading…
Reference in New Issue
Block a user