Markdown: Use .call instead of .bind

Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
pull/21833/head
Johannes Löthberg 2016-11-30 01:03:05 +01:00
parent 4d2926485b
commit 5f160d2e7f
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ export default class Markdown {
par = par.parent
}
if (par.firstChild != par.lastChild) {
real_paragraph.bind(this)(node, entering);
real_paragraph.call(this, node, entering);
}
}