mirror of
https://github.com/standardnotes/app.git
synced 2026-01-16 23:01:30 +00:00
feat: enable websocket connection
This commit is contained in:
parent
3867f625f1
commit
3cba208b07
2 changed files with 3 additions and 0 deletions
|
|
@ -55,6 +55,7 @@ export class WebApplication extends SNApplication {
|
|||
scope: angular.IScope,
|
||||
defaultSyncServerHost: string,
|
||||
public bridge: Bridge,
|
||||
webSocketUrl: string,
|
||||
) {
|
||||
super(
|
||||
bridge.environment,
|
||||
|
|
@ -67,6 +68,7 @@ export class WebApplication extends SNApplication {
|
|||
defaultSyncServerHost,
|
||||
AppVersion,
|
||||
isDev,
|
||||
webSocketUrl,
|
||||
);
|
||||
this.$compile = $compile;
|
||||
this.scope = scope;
|
||||
|
|
|
|||
|
|
@ -64,6 +64,7 @@ export class ApplicationGroup extends SNApplicationGroup {
|
|||
scope,
|
||||
this.defaultSyncServerHost,
|
||||
this.bridge,
|
||||
this.webSocketUrl,
|
||||
);
|
||||
const appState = new AppState(
|
||||
this.$rootScope,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue