Skip to content

Commit

Permalink
Merge pull request #2 from marshyski/master
Browse files Browse the repository at this point in the history
I removed the breaks as it was placing my cursor on the next line.
  • Loading branch information
stvwhtly committed May 23, 2015
2 parents 0124358 + 784691a commit a7c4086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jquery.teletype.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
window.setTimeout( backspace, delay( settings.backDelay ) );
}, settings.delay );
} else {
output.html( output.html() + '<br />' + '<span class="teletype-prefix">' + settings.prefix + '</span>' );
output.html( output.html() + '<span class="teletype-prefix">' + settings.prefix + '</span>' );
if ( next() ) {
window.setTimeout( function() {
window.setTimeout( type, delay( settings.typeDelay ) );
Expand Down Expand Up @@ -140,4 +140,4 @@
loop: 0,
humanise: true
};
}( jQuery ) );
}( jQuery ) );
2 changes: 1 addition & 1 deletion jquery.teletype.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a7c4086

Please sign in to comment.