diff --git a/modules/ve/dm/nodes/ve.dm.DocumentNode.js b/modules/ve/dm/nodes/ve.dm.DocumentNode.js index 752798fc49..2fcf9697c2 100644 --- a/modules/ve/dm/nodes/ve.dm.DocumentNode.js +++ b/modules/ve/dm/nodes/ve.dm.DocumentNode.js @@ -12,11 +12,10 @@ * @constructor * @extends {ve.dm.BranchNode} * @param {ve.dm.BranchNode[]} [children] Child nodes to attach - * @param {Object} [attributes] Reference to map of attribute key/value pairs */ -ve.dm.DocumentNode = function ( children, attributes ) { +ve.dm.DocumentNode = function ( children ) { // Inheritance - ve.dm.BranchNode.call( this, 'document', children, attributes ); + ve.dm.BranchNode.call( this, 'document', children ); }; /* Static Members */