-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from mattboldt/fix_backspace_pause_state
Fixes #472. Bump version to 2.0.12.
- Loading branch information
Showing
10 changed files
with
1,944 additions
and
1,943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ bower install typed.js | |
#### CDN | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].11"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].12"></script> | ||
``` | ||
|
||
#### Setup | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "typed.js", | ||
"version": "2.0.11", | ||
"version": "2.0.12", | ||
"homepage": "https://github.com/mattboldt/typed.js", | ||
"authors": ["Matt Boldt <[email protected]>"], | ||
"description": "A JavaScript Typing Animation Library", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* | ||
* typed.js - A JavaScript Typing Animation Library | ||
* Author: Matt Boldt <[email protected]> | ||
* Version: v2.0.11 | ||
* Version: v2.0.12 | ||
* Url: https://github.com/mattboldt/typed.js | ||
* License(s): MIT | ||
* | ||
|
@@ -347,7 +347,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
var _this4 = this; | ||
|
||
if (this.pause.status === true) { | ||
this.setPauseStatus(curString, curStrPos, true); | ||
this.setPauseStatus(curString, curStrPos, false); | ||
return; | ||
} | ||
if (this.fadeOut) return this.initFadeOut(); | ||
|
@@ -551,6 +551,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
if (this.cursor) return; | ||
this.cursor = document.createElement('span'); | ||
this.cursor.className = 'typed-cursor'; | ||
this.cursor.setAttribute('aria-hidden', true); | ||
this.cursor.innerHTML = this.cursorChar; | ||
this.el.parentNode && this.el.parentNode.insertBefore(this.cursor, this.el.nextSibling); | ||
} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.