UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

14 lines (11 loc) 389 B
import Channel from './channel.js'; import windowHelper from '../utils/windowHelper.js'; export default class FacebookChannel extends Channel { constructor(channelData = {}, deeplink, widget) { super(channelData, deeplink, widget); } subscribe() { super.subscribe(); window.open(`https://m.me/${this.id}?ref=${this.deeplink}`, 'tb_facebook'); } }