r110814 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r110813
|
r110814
|
r110815
>
Date:
01:11, 7 February 2012
Author:
tparscal
Status:
deferred
Tags:
nodeploy
,
visualeditor
Comment:
Fixed backspace - another issue related the
r110805
(or as we are now calling it, "The Great Code Migration of 2012")
Modified paths:
/trunk/extensions/VisualEditor/modules/ve/es/ve.es.Node.js
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/VisualEditor/modules/ve/es/ve.es.Node.js
—
—
@@ -91,10 +91,10 @@
92
92
93
93
ve.Node.traverseUpstream( node, function( node ) {
94
94
var elementType = node.model.getElementType();
95
- if ( splitableNode != null && ve.es.Node.splitRules[ elementType ].children === true ) {
95
+ if ( splitableNode != null && ve.es.DocumentNode.splitRules[ elementType ].children === true ) {
96
96
return false;
97
97
}
98
- splitableNode = ve.es.Node.splitRules[ elementType ].self ? node : null
98
+ splitableNode = ve.es.DocumentNode.splitRules[ elementType ].self ? node : null
99
99
} );
100
100
return splitableNode;
101
101
};
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r110805
Migrated es.* to new ve.* namespace which is more structured, and will make i...
tparscal
23:50, 6 February 2012
Status & tagging log
07:19, 7 February 2012
Aaron Schulz
(
talk
|
contribs
)
changed the
status
of r110814
[
removed:
new
added:
deferred]
02:02, 7 February 2012
RobLa-WMF
(
talk
|
contribs
)
changed the
tags
for r110814
[
added:
visualeditor,nodeploy]