@textback/notification-widget
Version:
TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
13 lines (11 loc) • 383 B
JavaScript
import Channel from './channel.js';
import constants from '../utils/constants.js';
export default class ViberChannel extends Channel {
constructor(channelData = {}, deeplink, widget) {
super(channelData, deeplink, widget);
}
subscribe() {
super.subscribe();
window.open(`viber://pa?chatURI=${this.id}&context=${this.deeplink}`, 'viber');
}
}