Index: trunk/parsers/wikidom/lib/hype/models/es.DocumentModel.js |
— | — | @@ -91,14 +91,10 @@ |
92 | 92 | } |
93 | 93 | annotate.call( this, this.cursor + op.data.length ); |
94 | 94 | this.cursor += op.data.length; |
95 | | - |
96 | | - // TODO: Synchronize op.tree - insert elements and adjust lengths |
97 | 95 | } |
98 | 96 | |
99 | 97 | function remove( op ) { |
100 | 98 | this.data.splice( this.cursor, op.data.length ); |
101 | | - |
102 | | - // TODO: Synchronize op.tree - remove elements and adjust lengths |
103 | 99 | } |
104 | 100 | |
105 | 101 | function attribute( op, invert ) { |
— | — | @@ -710,6 +706,7 @@ |
711 | 707 | throw 'Invalid operation error. Operation type is not supported: ' + operation.type; |
712 | 708 | } |
713 | 709 | } |
| 710 | + // TODO: Synchronize op.tree - insert elements and adjust lengths |
714 | 711 | }; |
715 | 712 | |
716 | 713 | /** |
— | — | @@ -734,6 +731,7 @@ |
735 | 732 | throw 'Invalid operation error. Operation type is not supported: ' + operation.type; |
736 | 733 | } |
737 | 734 | } |
| 735 | + // TODO: Synchronize op.tree - insert elements and adjust lengths |
738 | 736 | }; |
739 | 737 | |
740 | 738 | /* Inheritance */ |