Added SinaglR
This commit is contained in:
22
Server/wwwroot/css/site.css
Normal file
22
Server/wwwroot/css/site.css
Normal file
@ -0,0 +1,22 @@
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
||||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
||||
}
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-bottom: 60px;
|
||||
}
|
BIN
Server/wwwroot/favicon.ico
Normal file
BIN
Server/wwwroot/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
13
Server/wwwroot/js/notification.js
Normal file
13
Server/wwwroot/js/notification.js
Normal file
@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
|
||||
var connection = new signalR.HubConnectionBuilder().withUrl("/NotificationHub").build();
|
||||
|
||||
connection.on("NotifyAll", function (data) {
|
||||
var message = `${data.keyPressEvent.dateTime} - [${data.lastScanServiceResultValue}]`;
|
||||
document.getElementById("data").innerText = message;
|
||||
});
|
||||
|
||||
connection.start().then(function () {
|
||||
}).catch(function (err) {
|
||||
return console.error(err.toString());
|
||||
});
|
3190
Server/wwwroot/js/signalr/dist/browser/signalr.js
vendored
Normal file
3190
Server/wwwroot/js/signalr/dist/browser/signalr.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
Server/wwwroot/js/site.js
Normal file
1
Server/wwwroot/js/site.js
Normal file
@ -0,0 +1 @@
|
||||
|
Reference in New Issue
Block a user