Skip to content

Commit

Permalink
fix(listeners): fix listeners typo
Browse files Browse the repository at this point in the history
Closes #290
  • Loading branch information
tivie committed Dec 1, 2016
1 parent 9683eef commit f0d25b7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/showdown.js

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

2 changes: 1 addition & 1 deletion dist/showdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/showdown.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/showdown.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/converter.js
Expand Up @@ -126,7 +126,7 @@ showdown.Converter = function (converterOptions) {
outputModifiers.push(ext[i]);
break;
}
if (ext[i].hasOwnProperty(listeners)) {
if (ext[i].hasOwnProperty('listeners')) {
for (var ln in ext[i].listeners) {
if (ext[i].listeners.hasOwnProperty(ln)) {
listen(ln, ext[i].listeners[ln]);
Expand Down

0 comments on commit f0d25b7

Please sign in to comment.