Merge branch 'develop' into feature/autocomplete-tags
This commit is contained in:
@@ -53,6 +53,7 @@ export class WebApplication extends SNApplication {
|
||||
scope: angular.IScope,
|
||||
defaultSyncServerHost: string,
|
||||
public bridge: Bridge,
|
||||
nextVersionSyncServerHost: string,
|
||||
) {
|
||||
super(
|
||||
bridge.environment,
|
||||
@@ -62,7 +63,8 @@ export class WebApplication extends SNApplication {
|
||||
new AlertService(),
|
||||
identifier,
|
||||
[],
|
||||
defaultSyncServerHost
|
||||
defaultSyncServerHost,
|
||||
nextVersionSyncServerHost,
|
||||
);
|
||||
this.$compile = $compile;
|
||||
this.scope = scope;
|
||||
|
||||
@@ -28,7 +28,8 @@ export class ApplicationGroup extends SNApplicationGroup {
|
||||
$rootScope: ng.IRootScopeService,
|
||||
$timeout: ng.ITimeoutService,
|
||||
private defaultSyncServerHost: string,
|
||||
private bridge: Bridge
|
||||
private bridge: Bridge,
|
||||
private nextVersionSyncServerHost: string,
|
||||
) {
|
||||
super(new WebDeviceInterface($timeout, bridge));
|
||||
this.$compile = $compile;
|
||||
@@ -62,7 +63,8 @@ export class ApplicationGroup extends SNApplicationGroup {
|
||||
this.$compile,
|
||||
scope,
|
||||
this.defaultSyncServerHost,
|
||||
this.bridge
|
||||
this.bridge,
|
||||
this.nextVersionSyncServerHost,
|
||||
);
|
||||
const appState = new AppState(
|
||||
this.$rootScope,
|
||||
|
||||
Reference in New Issue
Block a user