This commit is contained in:
C. Naoto Abreu Takemura 2019-01-29 20:47:25 -08:00
Родитель 0a7a420a4b
Коммит d5e8fabf9f
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -8,4 +8,4 @@ function forwardTimingEvent (timingEvent) {
sendEventViaDocument(eventToContentScript);
}
export default forwardTimingEvent;
export default forwardTimingEvent;

Просмотреть файл

@ -1,8 +1,8 @@
import sendEventViaDocument from './sendEventViaDocument.js';
function sendSimpleMessage(action) {
const event = new CustomEvent(action);
sendEventViaDocument(event);
function sendSimpleMessage (action) {
const event = new CustomEvent(action);
sendEventViaDocument(event);
}
export default sendSimpleMessage;

Просмотреть файл

@ -10,7 +10,7 @@ function pollConditionAsync (isConditionMet, intervalMs, maxRetries) {
resolve(true);
} else {
remaining--;
if (remaining === 0) {
clearInterval(interval);
resolve(false);