Merge "Added ve.ce.FocusableNode mixin to ve.ce.MWReferenceListNode"

This commit is contained in:
jenkins-bot 2013-06-19 00:53:56 +00:00 committed by Gerrit Code Review
commit fedcf454a0

View file

@ -22,6 +22,7 @@ ve.ce.MWReferenceListNode = function VeCeMWReferenceListNode( model, config ) {
// Mixin constructors
ve.ce.ProtectedNode.call( this );
ve.ce.FocusableNode.call( this );
// DOM Changes
this.$.addClass( 've-ce-mwReferenceListNode', 'reference' )
@ -43,6 +44,8 @@ ve.inheritClass( ve.ce.MWReferenceListNode, ve.ce.LeafNode );
ve.mixinClass( ve.ce.MWReferenceListNode, ve.ce.ProtectedNode );
ve.mixinClass( ve.ce.MWReferenceListNode, ve.ce.FocusableNode );
/* Static Properties */
ve.ce.MWReferenceListNode.static.name = 'mwReferenceList';