Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0ff6bf2

Browse files
authoredDec 28, 2017
Use const instead of var
1 parent 2ab7021 commit 0ff6bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎element-details/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ customElements.define('element-details',
22
class extends HTMLElement {
33
constructor() {
44
super();
5-
var template = document
5+
const template = document
66
.getElementById('element-details-template')
77
.content;
88
const shadowRoot = this.attachShadow({mode: 'open'})

0 commit comments

Comments
 (0)
Please sign in to comment.