Fix increment order

This commit is contained in:
Dennis Eichhorn 2018-12-10 18:19:05 +01:00
parent 973c03d74b
commit 558dbf0fdf

View File

@ -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);
}
};