Markdown: Use .call instead of .bind
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
This commit is contained in:
parent
4d2926485b
commit
5f160d2e7f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue