Skip to content

Commit

Permalink
Fix infinity symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
bramstein committed Mar 22, 2014
1 parent 5137b00 commit 9651216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/article/browser-assist.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jQuery(function ($) {

for (var j = lineStart; j < nodes.length; j += 1) {
// After a line break, we skip any nodes unless they are boxes or forced breaks.
if (nodes[j].type === 'box' || (nodes[j].type === 'penalty' && nodes[j].penalty === -Typeset.linebreak.defaults.infinity)) {
if (nodes[j].type === 'box' || (nodes[j].type === 'penalty' && nodes[j].penalty === -Typeset.linebreak.infinity)) {
lineStart = j;
break;
}
Expand Down

0 comments on commit 9651216

Please sign in to comment.