12 lines
281 B
Dart
12 lines
281 B
Dart
|
import 'dart:html';
|
||
|
import 'package:angel_websocket/browser.dart';
|
||
|
|
||
|
/// Dummy app to ensure client works with DDC.
|
||
|
main() {
|
||
|
var app = new WebSockets(window.location.origin);
|
||
|
window.alert(app.basePath);
|
||
|
|
||
|
app.connect().catchError((_) {
|
||
|
window.alert('no websocket');
|
||
|
});
|
||
|
}
|