File tree 2 files changed +4
-34
lines changed
2 files changed +4
-34
lines changed Original file line number Diff line number Diff line change @@ -174,39 +174,8 @@ <h3>Logg</h3>
174
174
175
175
/** Function for handling notifications **/
176
176
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" ;
210
179
}
211
180
212
181
Original file line number Diff line number Diff line change 38
38
transition : all 0.2s ease;
39
39
}
40
40
</ style >
41
-
41
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
42
+
42
43
< script src ="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.js "> </ script >
43
44
< script src ="js/pep.js "> </ script >
44
45
</ head >
You can’t perform that action at this time.
0 commit comments