Skip to content

Commit

Permalink
Fixed potential JS error to fix #81
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamminf committed Feb 13, 2017
1 parent 7b5b26a commit 289edeb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion neo/resources/converter.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion neo/resources/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion neo/resources/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion neo/resources/polyfill.js.map

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

1 change: 1 addition & 0 deletions src/input/Block.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ function _escapeHTML(str)

function _limit(s, l=40)
{
s = s || ''
return s.length > l ? s.slice(0, l - 3) + '...' : s
}

Expand Down

0 comments on commit 289edeb

Please sign in to comment.