File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class TypingEffectElement extends HTMLElement {
4040 }
4141
4242 get characterDelay ( ) : number {
43- return Math . max ( Math . min ( 0 , Math . floor ( Number ( this . getAttribute ( 'data-character-delay' ) ) ) , 2_147_483_647 ) ) || 40
43+ return Math . max ( 0 , Math . min ( Math . floor ( Number ( this . getAttribute ( 'data-character-delay' ) ) ) , 2_147_483_647 ) ) || 40
4444 }
4545
4646 set characterDelay ( value : number ) {
@@ -51,7 +51,7 @@ class TypingEffectElement extends HTMLElement {
5151 }
5252
5353 get lineDelay ( ) : number {
54- return Math . max ( Math . min ( 0 , Math . floor ( Number ( this . getAttribute ( 'data-line-delay' ) ) ) , 2_147_483_647 ) ) || 40
54+ return Math . max ( 0 , Math . min ( Math . floor ( Number ( this . getAttribute ( 'data-line-delay' ) ) ) , 2_147_483_647 ) ) || 40
5555 }
5656
5757 set lineDelay ( value : number ) {
You can’t perform that action at this time.
0 commit comments