mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-02-12 16:28:42 +00:00
Fix increment order
This commit is contained in:
parent
973c03d74b
commit
558dbf0fdf
|
|
@ -15,7 +15,7 @@
|
||||||
const e = typeof id === 'undefined' ? document.getElementsByClassName('m-editor') : [id],
|
const e = typeof id === 'undefined' ? document.getElementsByClassName('m-editor') : [id],
|
||||||
length = e.length;
|
length = e.length;
|
||||||
|
|
||||||
for(let i = 0; i < length; i++) {
|
for(let i = 0; i < length; ++i) {
|
||||||
this.bindElement(e[i].id);
|
this.bindElement(e[i].id);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user