File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ canvas.addEventListener("mousemove", function(e) {
55
55
}
56
56
} ) ;
57
57
58
- canvas . addEventListener ( "mouseup" , function ( e ) {
58
+ canvas . addEventListener ( "mouseup" , function ( ) {
59
59
console . log ( "mouseup" ) ;
60
60
isPenDown = false ;
61
61
@@ -160,7 +160,7 @@ eraser.addEventListener("click", function() {
160
160
161
161
let sticky = document . querySelector ( "#sticky" ) ;
162
162
163
- sticky . addEventListener ( "click" , function ( e ) {
163
+ sticky . addEventListener ( "click" , function ( ) {
164
164
addSticky ( ) ;
165
165
} ) ;
166
166
@@ -231,7 +231,7 @@ function addSticky(imageElement) {
231
231
}
232
232
} ) ;
233
233
234
- stickyHeader . addEventListener ( "mouseup" , function ( e ) {
234
+ stickyHeader . addEventListener ( "mouseup" , function ( ) {
235
235
stickyHold = false ;
236
236
} ) ;
237
237
Original file line number Diff line number Diff line change 1
1
* {
2
2
box-sizing : border-box;
3
- margin : 0 px ;
4
- padding : 0 px ;
3
+ margin : 0 ;
4
+ padding : 0 ;
5
5
}
6
6
7
7
body {
You can’t perform that action at this time.
0 commit comments