Skip to content

Commit 337109d

Browse files
authored
Merge pull request #473 from mattboldt/fix_backspace_pause_state
Fixes #472. Bump version to 2.0.12.
2 parents 646952b + a605c37 commit 337109d

File tree

10 files changed

+1944
-1943
lines changed

10 files changed

+1944
-1943
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bower install typed.js
2525
#### CDN
2626

2727
```html
28-
<script src="https://cdn.jsdelivr.net/npm/[email protected].11"></script>
28+
<script src="https://cdn.jsdelivr.net/npm/[email protected].12"></script>
2929
```
3030

3131
#### Setup

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typed.js",
3-
"version": "2.0.11",
3+
"version": "2.0.12",
44
"homepage": "https://github.com/mattboldt/typed.js",
55
"authors": ["Matt Boldt <[email protected]>"],
66
"description": "A JavaScript Typing Animation Library",

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ gulp.task('html-docs', () => {
5858
{},
5959
{
6060
name: 'Typed.js Docs',
61-
version: '2.0.11'
61+
version: '2.0.12'
6262
}
6363
)
6464
.pipe(gulp.dest('docs'));

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Declaration for typed.js
3-
* Typed.js version: v2.0.11
3+
* Typed.js version: v2.0.12
44
*/
55

66
declare module 'typed.js' {

lib/typed.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* typed.js - A JavaScript Typing Animation Library
44
* Author: Matt Boldt <[email protected]>
5-
* Version: v2.0.11
5+
* Version: v2.0.12
66
* Url: https://github.com/mattboldt/typed.js
77
* License(s): MIT
88
*
@@ -347,7 +347,7 @@ return /******/ (function(modules) { // webpackBootstrap
347347
var _this4 = this;
348348

349349
if (this.pause.status === true) {
350-
this.setPauseStatus(curString, curStrPos, true);
350+
this.setPauseStatus(curString, curStrPos, false);
351351
return;
352352
}
353353
if (this.fadeOut) return this.initFadeOut();
@@ -551,6 +551,7 @@ return /******/ (function(modules) { // webpackBootstrap
551551
if (this.cursor) return;
552552
this.cursor = document.createElement('span');
553553
this.cursor.className = 'typed-cursor';
554+
this.cursor.setAttribute('aria-hidden', true);
554555
this.cursor.innerHTML = this.cursorChar;
555556
this.el.parentNode && this.el.parentNode.insertBefore(this.cursor, this.el.nextSibling);
556557
}

lib/typed.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/typed.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)