Fix heads signalR functions name Backend + Frontend

This commit is contained in:
Lucio Maranta
2018-03-22 16:32:59 +01:00
parent 9ffcac882b
commit 75aae82f85
8 changed files with 853 additions and 859 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ namespace Step.Listeners.SignalR
// Send user softKeys
context.Clients.Group("ncData").userSoftKeys(LastUserSoftKeysData);
// Send heads data
context.Clients.Group("ncData").heads(LastHeadsData);
context.Clients.Group("ncData").headsData(LastHeadsData);
// Send axesNames data
context.Clients.Group("ncData").axesNames(LastAxesNamesData);
+115 -115
View File
File diff suppressed because one or more lines are too long
+20 -20
View File
File diff suppressed because one or more lines are too long
+19 -19
View File
File diff suppressed because one or more lines are too long
+6 -6
View File
File diff suppressed because one or more lines are too long
+6 -6
View File
File diff suppressed because one or more lines are too long
+685 -691
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -58,7 +58,7 @@ export class Hub {
this._hub.client.ncSoftKeys = Hub.ncSoftKeyChanged;
this._hub.client.ncSoftKeys = Hub.userSoftKeyChanged;
this._hub.client.heads = Hub.headsDataChanged;
this._hub.client.headsData = Hub.headsDataChanged;
this._hub.client.logout = this.logout;