Skip to content

Commit de0ac5a

Browse files
author
Steven Orvell
committed
lint fixes
1 parent 62ce314 commit de0ac5a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

lib/mixins/disable-upgrade-mixin.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
-->
1010
<script>
1111
(function() {
12+
'use strict';
1213

1314
const DISABLED_ATTR = 'disable-upgrade';
1415

@@ -79,7 +80,8 @@
7980
}
8081
}
8182

82-
}
83+
};
84+
8385
});
8486

8587
})();

test/unit/disable-upgrade.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ <h2 id="element">[[prop]]</h2>
3939
prop: {
4040
type: String
4141
}
42-
}
42+
};
4343
}
4444
constructor() {
4545
super();
@@ -71,7 +71,7 @@ <h2 id="element">[[prop]]</h2>
7171
static get properties() {
7272
return {
7373
upgradeDisabled: {value: true}
74-
}
74+
};
7575
}
7676
enable() {
7777
this.$.disabledEl.removeAttribute('disable-upgrade');

0 commit comments

Comments
 (0)