All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.frontend.webapi.online.ts Maven / Gradle / Ivy

import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';

@customElement('rap-online')
export class RapOnline extends LitElement {
    
	// Required so api users don't get warning spam in their logs
	render() {
		return html``;
	}

	registerOnlineListener() {
		window.ononline = _e => this.$server.onOnline();
		window.onoffline = _e => this.$server.onOffline();
	}

	unregisterOnlineLineListener() {
		window.ononline = null;
		window.onoffline = null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy