Skip to content

Commit 65fa348

Browse files
author
Alex Van Camp
committed
fix(panel): attempt to fix race condition when loading panel
1 parent ae1c5f6 commit 65fa348

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashboard/panel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* global Polymer */
2-
(function () {
2+
document.addEventListener('DOMContentLoaded', function () {
33
'use strict';
44

55
var sendBtn = document.getElementById('send');
@@ -98,4 +98,4 @@
9898
}
9999
});
100100
}
101-
})();
101+
});

0 commit comments

Comments
 (0)