From bc980c45bb3dd4e52ea24fa6dd0303c0a3add1ea Mon Sep 17 00:00:00 2001 From: Pawel Kadluczka Date: Tue, 22 Aug 2017 12:53:37 -0700 Subject: [PATCH] Updating samples --- client-ts/Microsoft.AspNetCore.SignalR.Client.TS/ILogger.ts | 2 +- client-ts/Microsoft.AspNetCore.SignalR.Client.TS/Loggers.ts | 2 +- samples/ChatSample/Views/Home/Index.cshtml | 5 +++-- samples/SocketsSample/wwwroot/hubs.html | 5 +++-- samples/SocketsSample/wwwroot/sockets.html | 2 +- samples/SocketsSample/wwwroot/streaming.html | 5 +++-- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/ILogger.ts b/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/ILogger.ts index 099b8e6e94..43047c1261 100644 --- a/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/ILogger.ts +++ b/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/ILogger.ts @@ -7,4 +7,4 @@ export enum LogLevel { export interface ILogger { log(logLevel: LogLevel, message: string): void; -} \ No newline at end of file +} diff --git a/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/Loggers.ts b/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/Loggers.ts index add985647d..8d5202bbf3 100644 --- a/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/Loggers.ts +++ b/client-ts/Microsoft.AspNetCore.SignalR.Client.TS/Loggers.ts @@ -17,4 +17,4 @@ export class ConsoleLogger implements ILogger { console.log(`${LogLevel[logLevel]}: ${message}`); } } -} \ No newline at end of file +} diff --git a/samples/ChatSample/Views/Home/Index.cshtml b/samples/ChatSample/Views/Home/Index.cshtml index d1db72abcf..52676f6d50 100644 --- a/samples/ChatSample/Views/Home/Index.cshtml +++ b/samples/ChatSample/Views/Home/Index.cshtml @@ -17,8 +17,9 @@