Index: trunk/extensions/VisualEditor/modules/es/views/es.ParagraphView.js |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | |
18 | 18 | /* Registration */ |
19 | 19 | |
20 | | -es.DocumentModel.nodeRules.paragraph = { |
| 20 | +es.DocumentView.splitRules.paragraph = { |
21 | 21 | 'self': true, |
22 | 22 | 'children': null |
23 | 23 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.PreView.js |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | |
18 | 18 | /* Registration */ |
19 | 19 | |
20 | | -es.DocumentModel.nodeRules.pre = { |
| 20 | +es.DocumentView.splitRules.pre = { |
21 | 21 | 'self': true, |
22 | 22 | 'children': null |
23 | 23 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.TableCellView.js |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | |
20 | 20 | /* Registration */ |
21 | 21 | |
22 | | -es.DocumentModel.nodeRules.tableCell = { |
| 22 | +es.DocumentView.splitRules.tableCell = { |
23 | 23 | 'self': false, |
24 | 24 | 'children': true |
25 | 25 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.TableView.js |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | |
20 | 20 | /* Registration */ |
21 | 21 | |
22 | | -es.DocumentModel.nodeRules.table = { |
| 22 | +es.DocumentView.splitRules.table = { |
23 | 23 | 'self': false, |
24 | 24 | 'children': false |
25 | 25 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.ListItemView.js |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | |
50 | 50 | /* Registration */ |
51 | 51 | |
52 | | -es.DocumentModel.nodeRules.listItem = { |
| 52 | +es.DocumentView.splitRules.listItem = { |
53 | 53 | 'self': true, |
54 | 54 | 'children': false |
55 | 55 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.ListView.js |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | |
46 | 46 | /* Registration */ |
47 | 47 | |
48 | | -es.DocumentModel.nodeRules.list = { |
| 48 | +es.DocumentView.splitRules.list = { |
49 | 49 | 'self': false, |
50 | 50 | 'children': true |
51 | 51 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.HeadingView.js |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | |
36 | 36 | /* Registration */ |
37 | 37 | |
38 | | -es.DocumentModel.nodeRules.heading = { |
| 38 | +es.DocumentView.splitRules.heading = { |
39 | 39 | 'self': true, |
40 | 40 | 'children': null |
41 | 41 | }; |
Index: trunk/extensions/VisualEditor/modules/es/views/es.TableRowView.js |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | |
20 | 20 | /* Registration */ |
21 | 21 | |
22 | | -es.DocumentModel.nodeRules.tableRow = { |
| 22 | +es.DocumentView.splitRules.tableRow = { |
23 | 23 | 'self': false, |
24 | 24 | 'children': false |
25 | 25 | }; |