File tree Expand file tree Collapse file tree 5 files changed +12
-9
lines changed
plain-admin/plain/admin/assets/admin
plain-pageviews/plain/pageviews/assets/pageviews Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ could unintentionally overwrite those since our CSS is combined.
7
7
*/
8
8
table {
9
9
width : 100% ;
10
- font-size : .875rem ;
10
+ font-size : 0 .875rem ;
11
11
line-height : 1.25rem ;
12
12
table-layout : auto;
13
13
}
@@ -74,7 +74,10 @@ main button {
74
74
background-color : # 2a2826 ;
75
75
border : 1px solid # 3f3d3b ;
76
76
border-radius : 6px ;
77
- transition : background-color 0.2s , border-color 0.2s , transform 0.2s ;
77
+ transition :
78
+ background-color 0.2s ,
79
+ border-color 0.2s ,
80
+ transform 0.2s ;
78
81
cursor : pointer;
79
82
flex-shrink : 0 ;
80
83
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ jQuery(($) => {
2
2
$ ( "[data-toggle]" ) . on ( "click" , function ( e ) {
3
3
e . preventDefault ( ) ;
4
4
const targets = $ ( this ) . data ( "toggle" ) . split ( "," ) ;
5
- $ . each ( targets , ( index , target ) => {
5
+ $ . each ( targets , ( _index , target ) => {
6
6
const $target = $ ( target ) ;
7
7
if ( $target . data ( "toggle-class" ) ) {
8
8
$target . toggleClass ( $target . data ( "toggle-class" ) ) ;
@@ -12,7 +12,7 @@ jQuery(($) => {
12
12
} ) ;
13
13
} ) ;
14
14
15
- $ ( "[data-autosubmit]" ) . on ( "change" , function ( e ) {
15
+ $ ( "[data-autosubmit]" ) . on ( "change" , function ( _e ) {
16
16
$ ( this ) . closest ( "form" ) . submit ( ) ;
17
17
} ) ;
18
18
Original file line number Diff line number Diff line change 15
15
try {
16
16
const scriptUrl = new URL ( scriptTag . src ) ;
17
17
trackUrl = `${ scriptUrl . origin } ${ defaultTrackPath } ` ;
18
- } catch ( error ) {
18
+ } catch ( _error ) {
19
19
trackUrl = defaultTrackPath ;
20
20
}
21
21
}
Original file line number Diff line number Diff line change 1
1
export default {
2
- async fetch ( request , env , context ) {
2
+ async fetch ( request , env , _context ) {
3
3
const url = new URL ( request . url ) ;
4
4
let subdomain = null ;
5
5
@@ -31,7 +31,7 @@ export default {
31
31
} ;
32
32
33
33
export class Tunnel {
34
- constructor ( state , env ) {
34
+ constructor ( _state , _env ) {
35
35
// this.state = state;
36
36
// this.env = env;
37
37
this . clientSocket = null ;
@@ -47,7 +47,7 @@ export class Tunnel {
47
47
return this . handleHttpRequest ( request ) ;
48
48
}
49
49
50
- handleWebSocket ( request ) {
50
+ handleWebSocket ( _request ) {
51
51
const [ client , server ] = Object . values ( new WebSocketPair ( ) ) ;
52
52
53
53
// Check against reserved subdomains
Original file line number Diff line number Diff line change @@ -73,4 +73,4 @@ members = [
73
73
]
74
74
75
75
[tool .plain .code .biome ]
76
- version = " 1.9.4 "
76
+ version = " 2.0.6 "
You can’t perform that action at this time.
0 commit comments