Skip to content

Commit

Permalink
Fixes minor issues with custom elements, scope
Browse files Browse the repository at this point in the history
  • Loading branch information
stephband committed Dec 12, 2024
1 parent fe928b4 commit d17a291
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion modules/renderer/renderer-attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ export default class AttributeRenderer extends Renderer {
// as they can be upgraded at any point
const property = name in names ? names[name] : name;
if (property
&& !this.isCustomElement
&& (property in element)
&& isWritableProperty(property, element)) {
this.property = property;
Expand Down
1 change: 1 addition & 0 deletions scope/scope-fns-ext.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

export { default as by } from 'fn/by.js';
export { clamp } from 'fn/clamp.js';
export { wrap } from 'fn/wrap.js';
export { default as deg } from 'fn/to-deg.js';
export { default as rad } from 'fn/to-rad.js';
export { default as equals } from 'fn/equals.js';
Expand Down

0 comments on commit d17a291

Please sign in to comment.