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

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

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