Merge "Remove useless ve-ce-mw*Node classes from GCN subclasses"

This commit is contained in:
jenkins-bot 2015-03-10 12:50:42 +00:00 committed by Gerrit Code Review
commit fdfc7c6386
2 changed files with 0 additions and 17 deletions

View file

@ -122,9 +122,6 @@ ve.ce.MWInlineExtensionNode = function VeCeMWInlineExtensionNode( model, config
// Mixin constructors
ve.ce.MWExtensionNode.call( this );
// DOM changes
this.$element.addClass( 've-ce-mwInlineExtensionNode' );
};
/* Inheritance */
@ -151,9 +148,6 @@ ve.ce.MWBlockExtensionNode = function VeCeMWBlockExtensionNode( model, config )
// Mixin constructors
ve.ce.MWExtensionNode.call( this );
// DOM changes
this.$element.addClass( 've-ce-mwBlockExtensionNode' );
};
/* Inheritance */

View file

@ -34,17 +34,6 @@ ve.ce.MWGalleryNode.static.primaryCommandName = 'gallery';
/* Methods */
/**
* @inheritdoc
*/
ve.ce.MWGalleryNode.prototype.onSetup = function () {
// Parent method
ve.ce.MWGalleryNode.super.prototype.onSetup.call( this );
// DOM changes
this.$element.addClass( 've-ce-mwGalleryNode' );
};
/**
* @inheritdoc ve.ce.GeneratedContentNode
*/