mirror of
https://github.com/Karaka-Management/oms-Editor.git
synced 2026-01-23 06:48:43 +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],
|
||||
length = e.length;
|
||||
|
||||
for(let i = 0; i < length; i++) {
|
||||
for(let i = 0; i < length; ++i) {
|
||||
this.bindElement(e[i].id);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user