blob: dbc60f7bf78776630eb21f5c28fde5127a749be4 (
plain)
| 1
2
3
4
5
6
7
 | export class OrderedListView {
    update() {
        // if attr's of an ordered_list (e.g., bulletStyle) change,
        // return false forces the dom node to be recreated which is necessary for the bullet labels to update
        return false;
    }
}
 |