File tree Expand file tree Collapse file tree
utils/misc/global-state-diff/v2.0 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 239239 </ div >
240240
241241 < div class =input >
242- < img class ='copy icon '>
243- < img class ='paste icon '>
242+ < img class ='copy icon ' title = copy >
243+ < img class ='paste icon ' title = paste >
244244 < input id =src value ='https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.2.0/codemirror.min.js '>
245245 </ div >
246246
309309 </ div >
310310
311311 < div class =input >
312- < img class ='copy icon '>
313- < img class ='paste icon '>
312+ < img class ='copy icon ' title = copy >
313+ < img class ='paste icon ' title = paste >
314314 < input id =src2 value ='https://cdn.jsdelivr.net/npm/codemirror/+esm '>
315315 </ div >
316316
348348 $ ( '#script .paste' ) . onclick = async e => { var txt = await navigator . clipboard . readText ( ) ; src . value = txt } ;
349349
350350 src . onkeydown = e => e . key == 'Enter' && process . script ( src . value ) ;
351- // src.value = 'https://cdn.jsdelivr.net/npm/markdown-it-container@4.0.0/+esm' ;
351+ src . onfocus = e => src . select ( ) ;
352352 src . focus ( ) ;
353353
354354 item = $ ( '#item' ) ;
369369 $ ( '#import .copy' ) . onclick = e => navigator . clipboard . writeText ( src2 . value ) ;
370370 $ ( '#import .paste' ) . onclick = async e => { var txt = await navigator . clipboard . readText ( ) ; src2 . value = txt } ;
371371
372- // src2.value = 'https://unpkg.com/es-module-lexer?module' ;
372+ src2 . onfocus = e => src2 . select ( ) ;
373373
374374 go2 . onclick = function ( ) {
375375
You can’t perform that action at this time.
0 commit comments