Skip to content

Commit bd51645

Browse files
author
Matt Boldt
committed
readme updates. Misc fixes
1 parent 8eae91b commit bd51645

File tree

4 files changed

+35
-25
lines changed

4 files changed

+35
-25
lines changed

README.md

Lines changed: 31 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ This is really all you need to get going.
3737
bower install typed.js
3838
~~~
3939

40-
4140
Want the animated blinking cursor? Add this CSS.
4241

4342
~~~ scss
@@ -64,6 +63,37 @@ Want the animated blinking cursor? Add this CSS.
6463
}
6564
~~~
6665

66+
Wonderfull sites using Typed.js
67+
---
68+
https://slack.com/
69+
70+
https://envato.com/
71+
72+
https://productmap.co/
73+
74+
https://www.typed.com/
75+
76+
https://git.market/
77+
78+
http://allison.house/404
79+
80+
http://www.maxcdn.com/
81+
82+
https://commando.io/
83+
84+
http://testdouble.com/agency.html
85+
86+
http://www.stephanemartinw.com/
87+
88+
http://www.trelab.fi/en/
89+
90+
http://jessejohnson.github.io/
91+
92+
http://patrickelhage.com/
93+
94+
http://tairemadailey.com/
95+
96+
6797
### HTML tags
6898

6999
By default the content type is set to `html`, so you're good to go. Want to type out the html regularly? Set it to `text`.
@@ -207,27 +237,6 @@ Want to get really custom? On my site and in the Typed.js demo I have the code t
207237
This checks if the `arrayPos` is `1`, which would be the second string you entered. If so, it sets `stopNum` to `3` instead of `0`, which tells it to stop when there are 3 characters left. For now you'll have to create custom `if` statements for each specific case you want. I may automate this somehow in the future.
208238
209239
210-
Wonderfull sites using Typed.js
211-
---
212-
http://allison.house/404
213-
214-
http://www.maxcdn.com/
215-
216-
https://commando.io/
217-
218-
http://testdouble.com/agency.html
219-
220-
http://www.stephanemartinw.com/
221-
222-
http://www.trelab.fi/en/
223-
224-
http://jessejohnson.github.io/
225-
226-
http://patrickelhage.com/
227-
228-
http://tairemadailey.com/
229-
230-
231240
## Development
232241
233242
`npm install`

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": "1.1.1",
3+
"version": "1.1.2",
44
"homepage": "https://github.com/mattboldt/typed.js",
55
"authors": [
66
"Matt Boldt <me@mattboldt.com>"

index.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1 class="h1">Typed.js</h1>
7979

8080
<div class="type-wrap">
8181
<div id="typed-strings">
82-
<p>Typed.js is a <strong><i>jQuery</i></strong> plugin.</p>
82+
<span>Typed.js is a <strong>jQuery</strong> plugin.</span>
8383
<p>It <em>types</em> out sentences.</p>
8484
<p>And then deletes them.</p>
8585
<p>Try it out!</p>

js/typed.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@
126126
if (this.stringsElement) {
127127
this.strings = [];
128128
this.stringsElement.hide();
129-
var strings = this.stringsElement.find('p');
129+
console.log(this.stringsElement.children());
130+
var strings = this.stringsElement.children();
130131
$.each(strings, function(key, value){
131132
self.strings.push($(value).html());
132133
});

0 commit comments

Comments
 (0)