Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge 876e349 into 69dcab5
Browse files Browse the repository at this point in the history
  • Loading branch information
f1ames committed Dec 12, 2018
2 parents 69dcab5 + 876e349 commit 3f56c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/conversion/conversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export default class Conversion {
upcastElementToAttribute( {
view,
model,
priority: definition.priority
converterPriority: definition.priority
} )
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/conversion/upcast-converters.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export function upcastElementToAttribute( config ) {
const eventName = elementName ? 'element:' + elementName : 'element';

return dispatcher => {
dispatcher.on( eventName, converter, { priority: config.converterPriority || 'normal' } );
dispatcher.on( eventName, converter, { priority: config.converterPriority || 'low' } );
};
}

Expand Down

0 comments on commit 3f56c10

Please sign in to comment.