mirror of
https://github.com/Karaka-Management/oms-Navigation.git
synced 2026-01-20 20:38:41 +00:00
Fix increment order
This commit is contained in:
parent
296709862c
commit
b4adee0ae5
|
|
@ -49,7 +49,7 @@
|
|||
const e = typeof id === 'undefined' ? document.getElementsByClassName('nav') : [document.getElementById(id)],
|
||||
length = e.length;
|
||||
|
||||
for (let i = 0; i < length; i++) {
|
||||
for (let i = 0; i < length; ++i) {
|
||||
this.bindElement(e[i]);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user