mirror of
https://github.com/discourse/discourse.git
synced 2025-02-22 22:16:25 +08:00
BUGFIX: not binding "this" correctly in horizRule
This commit is contained in:
parent
fd52c88548
commit
c5bd454ea6
2
vendor/assets/javascripts/better_markdown.js
vendored
2
vendor/assets/javascripts/better_markdown.js
vendored
@ -1045,7 +1045,7 @@
|
||||
block = next.shift();
|
||||
|
||||
// Check for an HR following a list: features/lists/hr_abutting
|
||||
var hr = this.dialect.block.horizRule( block, next );
|
||||
var hr = this.dialect.block.horizRule.apply(this, [block, next]);
|
||||
|
||||
if ( hr ) {
|
||||
ret.push.apply(ret, hr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user