Skip to content

Commit 7c99dff

Browse files
committed
.
1 parent 2ab78a5 commit 7c99dff

File tree

2 files changed

+4
-34
lines changed

2 files changed

+4
-34
lines changed

read.html

+2-33
Original file line numberDiff line numberDiff line change
@@ -174,39 +174,8 @@ <h3>Logg</h3>
174174

175175
/** Function for handling notifications **/
176176
function handleNotification(event) {
177-
'use strict';
178-
let value = event.target.value;
179-
value = value.buffer ? value : new DataView(value);
180-
181-
var bg_1;
182-
var bg_2;
183-
var bg_3;
184-
var bg_4;
185-
186-
if(value.getUint8(0))
187-
bg_1 = 'blue';
188-
else
189-
bg_1 = 'red';
190-
if(value.getUint8(1))
191-
bg_2 = 'blue';
192-
else
193-
bg_2 = 'red';
194-
if(value.getUint8(2))
195-
bg_3 = 'blue';
196-
else
197-
bg_3 = 'red';
198-
if(value.getUint8(3))
199-
bg_4 = 'blue';
200-
else
201-
bg_4 = 'red';
202-
203-
// Push received value to #notification for testing purposes
204-
document.getElementById("notification_1").backgroundColor = bg_1;
205-
document.getElementById("notification_2").backgroundColor = bg_2;
206-
document.getElementById("notification_3").backgroundColor = bg_3;
207-
document.getElementById("notification_4").backgroundColor = bg_4;
208-
209-
document.querySelector("#notification_1").innerHTML = "ja";
177+
178+
document.querySelector("#notification").innerHTML = "ja";
210179
}
211180

212181

styring.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
transition: all 0.2s ease;
3939
}
4040
</style>
41-
41+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
42+
4243
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.js"></script>
4344
<script src="js/pep.js"></script>
4445
</head>

0 commit comments

Comments
 (0)