6053
6053
</ head >
6054
6054
6055
6055
< body >
6056
+
6056
6057
< div >
6057
6058
< div >
6058
6059
< label for ="filePicker "> Choose or drag a (tar) file to encode:</ label >
6063
6064
< p > Compression Level (1-9): < input type ="number " min ="1 " max ="9 " value ="9 "id ="complevel "> </ input > </ p >
6064
6065
< div >
6065
6066
< h1 > BWTC32Key-encoded version</ h1 >
6066
- < textarea id ="base64textarea " placeholder ="Base32768 will appear here " cols ="50 " rows ="15 "> </ textarea > < br >
6067
+ < form name ="BWTC32Key " action ="">
6068
+ < textarea id ="base64textarea " name ="base32768textarea " placeholder ="Base32768 will appear here " cols ="50 " rows ="15 "> </ textarea > < br >
6069
+ < button id ="copy " type ="button " onclick ="copyOutputToClipboard(); "> Copy the above string.</ button >
6070
+ </ form >
6067
6071
< p > B3K filename:</ p >
6068
6072
6069
6073
< textarea id ="B3Kfilename "> myFile.B3K</ textarea >
@@ -6079,7 +6083,6 @@ <h3>Decoding:</h3>
6079
6083
< textarea id ="filename "> output.bin</ textarea >
6080
6084
< textarea id ="filetype "> application/octet-stream</ textarea > < br />
6081
6085
< a download ="output.bin " id ="downloadlink " style ="display: none "> Download decoded file</ a >
6082
-
6083
6086
< script >
6084
6087
// tell the embed parent frame the height of the content
6085
6088
if ( window . parent && window . parent . parent ) {
@@ -6283,34 +6286,34 @@ <h3>Decoding:</h3>
6283
6286
if ( this . hashed ) {
6284
6287
this . hashed = false ;
6285
6288
blocks [ 0 ] = this . block ;
6286
- blocks [ 16 ] = blocks [ 1 ] = blocks [ 2 ] = blocks [ 3 ] =
6289
+ this . block = blocks [ 16 ] = blocks [ 1 ] = blocks [ 2 ] = blocks [ 3 ] =
6287
6290
blocks [ 4 ] = blocks [ 5 ] = blocks [ 6 ] = blocks [ 7 ] =
6288
6291
blocks [ 8 ] = blocks [ 9 ] = blocks [ 10 ] = blocks [ 11 ] =
6289
6292
blocks [ 12 ] = blocks [ 13 ] = blocks [ 14 ] = blocks [ 15 ] = 0 ;
6290
6293
}
6291
6294
6292
6295
if ( notString ) {
6293
6296
for ( i = this . start ; index < length && i < 64 ; ++ index ) {
6294
- blocks [ i >> 2 ] |= message [ index ] << SHIFT [ i ++ & 3 ] ;
6297
+ blocks [ i >>> 2 ] |= message [ index ] << SHIFT [ i ++ & 3 ] ;
6295
6298
}
6296
6299
} else {
6297
6300
for ( i = this . start ; index < length && i < 64 ; ++ index ) {
6298
6301
code = message . charCodeAt ( index ) ;
6299
6302
if ( code < 0x80 ) {
6300
- blocks [ i >> 2 ] |= code << SHIFT [ i ++ & 3 ] ;
6303
+ blocks [ i >>> 2 ] |= code << SHIFT [ i ++ & 3 ] ;
6301
6304
} else if ( code < 0x800 ) {
6302
- blocks [ i >> 2 ] |= ( 0xc0 | ( code >> 6 ) ) << SHIFT [ i ++ & 3 ] ;
6303
- blocks [ i >> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6305
+ blocks [ i >>> 2 ] |= ( 0xc0 | ( code > >> 6 ) ) << SHIFT [ i ++ & 3 ] ;
6306
+ blocks [ i >>> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6304
6307
} else if ( code < 0xd800 || code >= 0xe000 ) {
6305
- blocks [ i >> 2 ] |= ( 0xe0 | ( code >> 12 ) ) << SHIFT [ i ++ & 3 ] ;
6306
- blocks [ i >> 2 ] |= ( 0x80 | ( ( code >> 6 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6307
- blocks [ i >> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6308
+ blocks [ i >>> 2 ] |= ( 0xe0 | ( code > >> 12 ) ) << SHIFT [ i ++ & 3 ] ;
6309
+ blocks [ i >>> 2 ] |= ( 0x80 | ( ( code > >> 6 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6310
+ blocks [ i >>> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6308
6311
} else {
6309
6312
code = 0x10000 + ( ( ( code & 0x3ff ) << 10 ) | ( message . charCodeAt ( ++ index ) & 0x3ff ) ) ;
6310
- blocks [ i >> 2 ] |= ( 0xf0 | ( code >> 18 ) ) << SHIFT [ i ++ & 3 ] ;
6311
- blocks [ i >> 2 ] |= ( 0x80 | ( ( code >> 12 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6312
- blocks [ i >> 2 ] |= ( 0x80 | ( ( code >> 6 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6313
- blocks [ i >> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6313
+ blocks [ i >>> 2 ] |= ( 0xf0 | ( code > >> 18 ) ) << SHIFT [ i ++ & 3 ] ;
6314
+ blocks [ i >>> 2 ] |= ( 0x80 | ( ( code > >> 12 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6315
+ blocks [ i >>> 2 ] |= ( 0x80 | ( ( code > >> 6 ) & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6316
+ blocks [ i >>> 2 ] |= ( 0x80 | ( code & 0x3f ) ) << SHIFT [ i ++ & 3 ] ;
6314
6317
}
6315
6318
}
6316
6319
}
@@ -6340,7 +6343,7 @@ <h3>Decoding:</h3>
6340
6343
this . finalized = true ;
6341
6344
var blocks = this . blocks , i = this . lastByteIndex ;
6342
6345
blocks [ 16 ] = this . block ;
6343
- blocks [ i >> 2 ] |= EXTRA [ i & 3 ] ;
6346
+ blocks [ i >>> 2 ] |= EXTRA [ i & 3 ] ;
6344
6347
this . block = blocks [ 16 ] ;
6345
6348
if ( i >= 56 ) {
6346
6349
if ( ! this . hashed ) {
@@ -6441,39 +6444,39 @@ <h3>Decoding:</h3>
6441
6444
var h0 = this . h0 , h1 = this . h1 , h2 = this . h2 , h3 = this . h3 , h4 = this . h4 , h5 = this . h5 ,
6442
6445
h6 = this . h6 , h7 = this . h7 ;
6443
6446
6444
- var hex = HEX_CHARS [ ( h0 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h0 >> 24 ) & 0x0F ] +
6445
- HEX_CHARS [ ( h0 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h0 >> 16 ) & 0x0F ] +
6446
- HEX_CHARS [ ( h0 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h0 >> 8 ) & 0x0F ] +
6447
- HEX_CHARS [ ( h0 >> 4 ) & 0x0F ] + HEX_CHARS [ h0 & 0x0F ] +
6448
- HEX_CHARS [ ( h1 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h1 >> 24 ) & 0x0F ] +
6449
- HEX_CHARS [ ( h1 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h1 >> 16 ) & 0x0F ] +
6450
- HEX_CHARS [ ( h1 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h1 >> 8 ) & 0x0F ] +
6451
- HEX_CHARS [ ( h1 >> 4 ) & 0x0F ] + HEX_CHARS [ h1 & 0x0F ] +
6452
- HEX_CHARS [ ( h2 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h2 >> 24 ) & 0x0F ] +
6453
- HEX_CHARS [ ( h2 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h2 >> 16 ) & 0x0F ] +
6454
- HEX_CHARS [ ( h2 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h2 >> 8 ) & 0x0F ] +
6455
- HEX_CHARS [ ( h2 >> 4 ) & 0x0F ] + HEX_CHARS [ h2 & 0x0F ] +
6456
- HEX_CHARS [ ( h3 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h3 >> 24 ) & 0x0F ] +
6457
- HEX_CHARS [ ( h3 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h3 >> 16 ) & 0x0F ] +
6458
- HEX_CHARS [ ( h3 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h3 >> 8 ) & 0x0F ] +
6459
- HEX_CHARS [ ( h3 >> 4 ) & 0x0F ] + HEX_CHARS [ h3 & 0x0F ] +
6460
- HEX_CHARS [ ( h4 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h4 >> 24 ) & 0x0F ] +
6461
- HEX_CHARS [ ( h4 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h4 >> 16 ) & 0x0F ] +
6462
- HEX_CHARS [ ( h4 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h4 >> 8 ) & 0x0F ] +
6463
- HEX_CHARS [ ( h4 >> 4 ) & 0x0F ] + HEX_CHARS [ h4 & 0x0F ] +
6464
- HEX_CHARS [ ( h5 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h5 >> 24 ) & 0x0F ] +
6465
- HEX_CHARS [ ( h5 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h5 >> 16 ) & 0x0F ] +
6466
- HEX_CHARS [ ( h5 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h5 >> 8 ) & 0x0F ] +
6467
- HEX_CHARS [ ( h5 >> 4 ) & 0x0F ] + HEX_CHARS [ h5 & 0x0F ] +
6468
- HEX_CHARS [ ( h6 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h6 >> 24 ) & 0x0F ] +
6469
- HEX_CHARS [ ( h6 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h6 >> 16 ) & 0x0F ] +
6470
- HEX_CHARS [ ( h6 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h6 >> 8 ) & 0x0F ] +
6471
- HEX_CHARS [ ( h6 >> 4 ) & 0x0F ] + HEX_CHARS [ h6 & 0x0F ] ;
6447
+ var hex = HEX_CHARS [ ( h0 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h0 > >> 24 ) & 0x0F ] +
6448
+ HEX_CHARS [ ( h0 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h0 > >> 16 ) & 0x0F ] +
6449
+ HEX_CHARS [ ( h0 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h0 > >> 8 ) & 0x0F ] +
6450
+ HEX_CHARS [ ( h0 >>> 4 ) & 0x0F ] + HEX_CHARS [ h0 & 0x0F ] +
6451
+ HEX_CHARS [ ( h1 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h1 > >> 24 ) & 0x0F ] +
6452
+ HEX_CHARS [ ( h1 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h1 > >> 16 ) & 0x0F ] +
6453
+ HEX_CHARS [ ( h1 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h1 > >> 8 ) & 0x0F ] +
6454
+ HEX_CHARS [ ( h1 >>> 4 ) & 0x0F ] + HEX_CHARS [ h1 & 0x0F ] +
6455
+ HEX_CHARS [ ( h2 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h2 > >> 24 ) & 0x0F ] +
6456
+ HEX_CHARS [ ( h2 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h2 > >> 16 ) & 0x0F ] +
6457
+ HEX_CHARS [ ( h2 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h2 > >> 8 ) & 0x0F ] +
6458
+ HEX_CHARS [ ( h2 >>> 4 ) & 0x0F ] + HEX_CHARS [ h2 & 0x0F ] +
6459
+ HEX_CHARS [ ( h3 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h3 > >> 24 ) & 0x0F ] +
6460
+ HEX_CHARS [ ( h3 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h3 > >> 16 ) & 0x0F ] +
6461
+ HEX_CHARS [ ( h3 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h3 > >> 8 ) & 0x0F ] +
6462
+ HEX_CHARS [ ( h3 >>> 4 ) & 0x0F ] + HEX_CHARS [ h3 & 0x0F ] +
6463
+ HEX_CHARS [ ( h4 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h4 > >> 24 ) & 0x0F ] +
6464
+ HEX_CHARS [ ( h4 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h4 > >> 16 ) & 0x0F ] +
6465
+ HEX_CHARS [ ( h4 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h4 > >> 8 ) & 0x0F ] +
6466
+ HEX_CHARS [ ( h4 >>> 4 ) & 0x0F ] + HEX_CHARS [ h4 & 0x0F ] +
6467
+ HEX_CHARS [ ( h5 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h5 > >> 24 ) & 0x0F ] +
6468
+ HEX_CHARS [ ( h5 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h5 > >> 16 ) & 0x0F ] +
6469
+ HEX_CHARS [ ( h5 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h5 > >> 8 ) & 0x0F ] +
6470
+ HEX_CHARS [ ( h5 >>> 4 ) & 0x0F ] + HEX_CHARS [ h5 & 0x0F ] +
6471
+ HEX_CHARS [ ( h6 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h6 > >> 24 ) & 0x0F ] +
6472
+ HEX_CHARS [ ( h6 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h6 > >> 16 ) & 0x0F ] +
6473
+ HEX_CHARS [ ( h6 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h6 > >> 8 ) & 0x0F ] +
6474
+ HEX_CHARS [ ( h6 >>> 4 ) & 0x0F ] + HEX_CHARS [ h6 & 0x0F ] ;
6472
6475
if ( ! this . is224 ) {
6473
- hex += HEX_CHARS [ ( h7 >> 28 ) & 0x0F ] + HEX_CHARS [ ( h7 >> 24 ) & 0x0F ] +
6474
- HEX_CHARS [ ( h7 >> 20 ) & 0x0F ] + HEX_CHARS [ ( h7 >> 16 ) & 0x0F ] +
6475
- HEX_CHARS [ ( h7 >> 12 ) & 0x0F ] + HEX_CHARS [ ( h7 >> 8 ) & 0x0F ] +
6476
- HEX_CHARS [ ( h7 >> 4 ) & 0x0F ] + HEX_CHARS [ h7 & 0x0F ] ;
6476
+ hex += HEX_CHARS [ ( h7 >>> 28 ) & 0x0F ] + HEX_CHARS [ ( h7 > >> 24 ) & 0x0F ] +
6477
+ HEX_CHARS [ ( h7 >>> 20 ) & 0x0F ] + HEX_CHARS [ ( h7 > >> 16 ) & 0x0F ] +
6478
+ HEX_CHARS [ ( h7 >>> 12 ) & 0x0F ] + HEX_CHARS [ ( h7 > >> 8 ) & 0x0F ] +
6479
+ HEX_CHARS [ ( h7 >>> 4 ) & 0x0F ] + HEX_CHARS [ h7 & 0x0F ] ;
6477
6480
}
6478
6481
return hex ;
6479
6482
} ;
@@ -6487,16 +6490,16 @@ <h3>Decoding:</h3>
6487
6490
h6 = this . h6 , h7 = this . h7 ;
6488
6491
6489
6492
var arr = [
6490
- ( h0 >> 24 ) & 0xFF , ( h0 >> 16 ) & 0xFF , ( h0 >> 8 ) & 0xFF , h0 & 0xFF ,
6491
- ( h1 >> 24 ) & 0xFF , ( h1 >> 16 ) & 0xFF , ( h1 >> 8 ) & 0xFF , h1 & 0xFF ,
6492
- ( h2 >> 24 ) & 0xFF , ( h2 >> 16 ) & 0xFF , ( h2 >> 8 ) & 0xFF , h2 & 0xFF ,
6493
- ( h3 >> 24 ) & 0xFF , ( h3 >> 16 ) & 0xFF , ( h3 >> 8 ) & 0xFF , h3 & 0xFF ,
6494
- ( h4 >> 24 ) & 0xFF , ( h4 >> 16 ) & 0xFF , ( h4 >> 8 ) & 0xFF , h4 & 0xFF ,
6495
- ( h5 >> 24 ) & 0xFF , ( h5 >> 16 ) & 0xFF , ( h5 >> 8 ) & 0xFF , h5 & 0xFF ,
6496
- ( h6 >> 24 ) & 0xFF , ( h6 >> 16 ) & 0xFF , ( h6 >> 8 ) & 0xFF , h6 & 0xFF
6493
+ ( h0 >>> 24 ) & 0xFF , ( h0 >>> 16 ) & 0xFF , ( h0 > >> 8 ) & 0xFF , h0 & 0xFF ,
6494
+ ( h1 >>> 24 ) & 0xFF , ( h1 >>> 16 ) & 0xFF , ( h1 > >> 8 ) & 0xFF , h1 & 0xFF ,
6495
+ ( h2 >>> 24 ) & 0xFF , ( h2 >>> 16 ) & 0xFF , ( h2 > >> 8 ) & 0xFF , h2 & 0xFF ,
6496
+ ( h3 >>> 24 ) & 0xFF , ( h3 >>> 16 ) & 0xFF , ( h3 > >> 8 ) & 0xFF , h3 & 0xFF ,
6497
+ ( h4 >>> 24 ) & 0xFF , ( h4 >>> 16 ) & 0xFF , ( h4 > >> 8 ) & 0xFF , h4 & 0xFF ,
6498
+ ( h5 >>> 24 ) & 0xFF , ( h5 >>> 16 ) & 0xFF , ( h5 > >> 8 ) & 0xFF , h5 & 0xFF ,
6499
+ ( h6 >>> 24 ) & 0xFF , ( h6 >>> 16 ) & 0xFF , ( h6 > >> 8 ) & 0xFF , h6 & 0xFF
6497
6500
] ;
6498
6501
if ( ! this . is224 ) {
6499
- arr . push ( ( h7 >> 24 ) & 0xFF , ( h7 >> 16 ) & 0xFF , ( h7 >> 8 ) & 0xFF , h7 & 0xFF ) ;
6502
+ arr . push ( ( h7 >>> 24 ) & 0xFF , ( h7 >>> 16 ) & 0xFF , ( h7 > >> 8 ) & 0xFF , h7 & 0xFF ) ;
6500
6503
}
6501
6504
return arr ;
6502
6505
} ;
@@ -6530,17 +6533,17 @@ <h3>Decoding:</h3>
6530
6533
if ( code < 0x80 ) {
6531
6534
bytes [ index ++ ] = code ;
6532
6535
} else if ( code < 0x800 ) {
6533
- bytes [ index ++ ] = ( 0xc0 | ( code >> 6 ) ) ;
6536
+ bytes [ index ++ ] = ( 0xc0 | ( code >>> 6 ) ) ;
6534
6537
bytes [ index ++ ] = ( 0x80 | ( code & 0x3f ) ) ;
6535
6538
} else if ( code < 0xd800 || code >= 0xe000 ) {
6536
- bytes [ index ++ ] = ( 0xe0 | ( code >> 12 ) ) ;
6537
- bytes [ index ++ ] = ( 0x80 | ( ( code >> 6 ) & 0x3f ) ) ;
6539
+ bytes [ index ++ ] = ( 0xe0 | ( code >>> 12 ) ) ;
6540
+ bytes [ index ++ ] = ( 0x80 | ( ( code >>> 6 ) & 0x3f ) ) ;
6538
6541
bytes [ index ++ ] = ( 0x80 | ( code & 0x3f ) ) ;
6539
6542
} else {
6540
6543
code = 0x10000 + ( ( ( code & 0x3ff ) << 10 ) | ( key . charCodeAt ( ++ i ) & 0x3ff ) ) ;
6541
- bytes [ index ++ ] = ( 0xf0 | ( code >> 18 ) ) ;
6542
- bytes [ index ++ ] = ( 0x80 | ( ( code >> 12 ) & 0x3f ) ) ;
6543
- bytes [ index ++ ] = ( 0x80 | ( ( code >> 6 ) & 0x3f ) ) ;
6544
+ bytes [ index ++ ] = ( 0xf0 | ( code >>> 18 ) ) ;
6545
+ bytes [ index ++ ] = ( 0x80 | ( ( code >>> 12 ) & 0x3f ) ) ;
6546
+ bytes [ index ++ ] = ( 0x80 | ( ( code >>> 6 ) & 0x3f ) ) ;
6544
6547
bytes [ index ++ ] = ( 0x80 | ( code & 0x3f ) ) ;
6545
6548
}
6546
6549
}
@@ -9656,6 +9659,8 @@ <h3>Decoding:</h3>
9656
9659
return a ;
9657
9660
}
9658
9661
9662
+
9663
+
9659
9664
( function ( ) {
9660
9665
var textFile = null ,
9661
9666
makeTextFile = function ( text ) {
@@ -9701,6 +9706,32 @@ <h3>Decoding:</h3>
9701
9706
9702
9707
} ) ;
9703
9708
9709
+ function copyOutputToClipboard ( ) {
9710
+ var targetBox = document . BWTC32Key . base32768textarea ;
9711
+ // https://stackoverflow.com/questions/51158061/copy-data-to-clipboard-without-selecting-any-text
9712
+ // - restoring original selection doesn't seem to work
9713
+ var origSelectionStart , origSelectionEnd ;
9714
+ origSelectionStart = targetBox . selectionStart ;
9715
+ origSelectionEnd = targetBox . selectionEnd ;
9716
+ // select the content
9717
+ var currentFocus = document . activeElement ;
9718
+ targetBox . focus ( ) ;
9719
+ targetBox . setSelectionRange ( 0 , targetBox . value . length ) ;
9720
+ var succeed ;
9721
+ try {
9722
+ succeed = document . execCommand ( "copy" ) ;
9723
+ } catch ( e ) {
9724
+ succeed = false ;
9725
+ }
9726
+ // restore original focus
9727
+ if ( currentFocus && typeof currentFocus . focus === "function" ) {
9728
+ currentFocus . focus ( ) ;
9729
+ }
9730
+ // restore prior selection
9731
+ targetBox . setSelectionRange ( origSelectionStart , origSelectionEnd ) ;
9732
+ } ;
9733
+
9734
+
9704
9735
//]]>
9705
9736
9706
9737
0 commit comments