@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) • 373 B
JavaScript
import Channel from './channel.js';
import constants from '../utils/constants.js';
export default class SkypeChannel extends Channel {
constructor(channelData = {}, deeplink, widget) {
super(channelData, deeplink, widget);
}
subscribe() {
super.subscribe();
window.open(`https://join.skype.com/bot/${this.id}?add`, 'tb_skype');
}
}