File tree 3 files changed +19
-4
lines changed
3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 50
50
</ div >
51
51
< div class ="pinned-apps "> </ div >
52
52
< div class ="container-apps "> </ div >
53
- < script src ="assets/js/c.js?v=03 "> </ script >
53
+ < script src ="assets/js/c.js?v=04 "> </ script >
54
54
< script src ="/assets/js/m.js?v=07 "> </ script >
55
55
< script
56
56
async
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ const a = window.location.pathname === "/yz";
4
4
const c = window . location . pathname === "/gt" ;
5
5
const t = window . top . location . pathname === "/rx" ;
6
6
7
+ function Span ( name ) {
8
+ return name . split ( "" ) . map ( char => {
9
+ const span = document . createElement ( "span" ) ;
10
+ span . textContent = char ;
11
+ return span ;
12
+ } ) ;
13
+ }
14
+
7
15
function saveToLocal ( path ) {
8
16
sessionStorage . setItem ( "GoUrl" , path ) ;
9
17
}
@@ -195,7 +203,11 @@ function CreateCustomApp(customApp) {
195
203
image . loading = "lazy" ;
196
204
197
205
const paragraph = document . createElement ( "p" ) ;
198
- paragraph . textContent = customApp . name ;
206
+
207
+ for ( const span of Span ( customApp . name ) ) {
208
+ paragraph . appendChild ( span ) ;
209
+ }
210
+
199
211
200
212
linkElem . appendChild ( image ) ;
201
213
linkElem . appendChild ( paragraph ) ;
@@ -317,7 +329,10 @@ fetch(path)
317
329
}
318
330
319
331
const paragraph = document . createElement ( "p" ) ;
320
- paragraph . textContent = app . name ;
332
+
333
+ for ( const span of Span ( app . name ) ) {
334
+ paragraph . appendChild ( span ) ;
335
+ }
321
336
322
337
if ( app . error ) {
323
338
paragraph . style . color = "red" ;
Original file line number Diff line number Diff line change 37
37
</ div >
38
38
< div class ="pinned-apps "> </ div >
39
39
< div class ="container-apps "> </ div >
40
- < script src ="/assets/js/c.js?v=03 "> </ script >
40
+ < script src ="/assets/js/c.js?v=04 "> </ script >
41
41
< script src ="./assets/ultra/bundle.js?v=10-02-2024 "> </ script >
42
42
< script src ="./assets/ultra/config.js?v=10-02-2024 "> </ script >
43
43
< script src ="assets/js/f.js "> </ script >
You can’t perform that action at this time.
0 commit comments