Skip to content

Commit

Permalink
More closure fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Jul 26, 2019
1 parent 2bb488c commit 04ddc24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/mixins/element-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,9 @@ export const ElementMixin = dedupingMixin(base => {
* Determines if a property dfeault can be applied. For example, this
* prevents a default from being applied when a property that has no
* accessor is overridden by its host before upgrade (e.g. via a binding).
* @override
* @param {string} property Name of the property
* @returns {boolean} Returns true if the property default can be applied.
* @return {boolean} Returns true if the property default can be applied.
*/
_canApplyPropertyDefault(property) {
return !this.hasOwnProperty(property);
Expand Down

0 comments on commit 04ddc24

Please sign in to comment.