diff --git a/modules/ve-mw/ce/nodes/ve.ce.MWExtensionNode.js b/modules/ve-mw/ce/nodes/ve.ce.MWExtensionNode.js index 9d681d165f..669145c9ae 100644 --- a/modules/ve-mw/ce/nodes/ve.ce.MWExtensionNode.js +++ b/modules/ve-mw/ce/nodes/ve.ce.MWExtensionNode.js @@ -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 */ diff --git a/modules/ve-mw/ce/nodes/ve.ce.MWGalleryNode.js b/modules/ve-mw/ce/nodes/ve.ce.MWGalleryNode.js index 26b3a4db87..9dab088e5d 100644 --- a/modules/ve-mw/ce/nodes/ve.ce.MWGalleryNode.js +++ b/modules/ve-mw/ce/nodes/ve.ce.MWGalleryNode.js @@ -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 */