Merge "Fix annotation breakage"

This commit is contained in:
jenkins-bot 2013-04-16 01:03:48 +00:00 committed by Gerrit Code Review
commit a5e49f8716

View file

@ -14,7 +14,7 @@
*/
ve.dm.Model = function VeDmModel( element ) {
// Properties
this.element = element || { 'type': this.constructor.static.name, 'attributes': {} };
this.element = element || { 'type': this.constructor.static.name };
};
ve.dm.Model.static = {};