UNPKG
ep_rocketchat
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Integrating rocketchat with Etherpad
github.com/samirsayyad/ep_rocketchat
samirsayyad/ep_rocketchat
ep_rocketchat
/
static
/
js
/
handleRocketChatNotifications
/
methods
/
pushMethod.js
9 lines
(7 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
exports
.
pushMethod
=
(
data
) =>
{
const
event =
new
CustomEvent
(
'ep_push_notification'
, {
detail
: {
eventName
:
'notifyMe'
, data}});
// Dispatch/Trigger/Fire the event
window
.
dispatchEvent
(event); };