File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
components/svelte-portal/src Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 60
60
on:click ={() => {
61
61
change_tab (tab );
62
62
}}
63
+ on:keypress ={() => {
64
+ change_tab (tab );
65
+ }}
63
66
>
64
67
{tab }
65
68
</tab >
81
84
</tab-content >
82
85
{:else if current_tab == tabs [3 ]}
83
86
<tab-content >
84
- <UartTerminal bind:this ={uart_terminal } on _mount={uart_on_mount } send ={uart_send }/>
87
+ <UartTerminal
88
+ bind:this ={uart_terminal }
89
+ on _mount={uart_on_mount }
90
+ send ={uart_send }
91
+ />
85
92
</tab-content >
86
93
{/if }
87
94
</tabs-content >
Original file line number Diff line number Diff line change 2
2
let server = " " ;
3
3
4
4
if (development_mode) {
5
- server = " http://172.30.1.83 " ;
5
+ server = " http://192.168.0.18 " ;
6
6
}
7
7
8
8
export const api = {
Original file line number Diff line number Diff line change 14
14
<popup-wrapper >
15
15
<popup-body >
16
16
<popup-content >
17
- <popup-close on:click ={close }>X</popup-close >
17
+ <popup-close on:click ={close } on:keypress ={ close } >X</popup-close >
18
18
<popup-border >
19
19
<slot />
20
20
</popup-border >
You can’t perform that action at this time.
0 commit comments