Skip to content

Commit 95a8aa7

Browse files
committed
the signature for normalizeProperty has changed. The return value is now { normalized, type }, and internally both the lower and non lower prop forms are handled
1 parent 0416335 commit 95a8aa7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ember-views/lib/compat/render_buffer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -515,9 +515,9 @@ RenderBuffer.prototype = {
515515

516516
if (props) {
517517
for (prop in props) {
518-
var normalizedCase = normalizeProperty(element, prop.toLowerCase()) || prop;
518+
var { normalized } = normalizeProperty(element, prop);
519519

520-
this.dom.setPropertyStrict(element, normalizedCase, props[prop]);
520+
this.dom.setPropertyStrict(element, normalized, props[prop]);
521521
}
522522

523523
this.elementProperties = null;

0 commit comments

Comments
 (0)