mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 20:57:45 +03:00
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Socket } from 'ngx-socket-io';
|
|
|
|
@Injectable()
|
|
export class MeTubeSocket extends Socket {
|
|
constructor() {
|
|
const path =
|
|
document.location.pathname.replace(/share-target/, '') + 'socket.io';
|
|
super({ url: '', options: { path } });
|
|
}
|
|
}
|