aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/OrderedListView.tsx
blob: c3595e59b8136821180f8d9ccb75617554d7ea9d (plain)
1
2
3
4
5
6
7
8
export class OrderedListView {

    update(node: any) {
        // 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; 
    }
}