BUGFIX: not binding "this" correctly in horizRule

This commit is contained in:
Sam 2014-06-25 10:03:41 +10:00
parent fd52c88548
commit c5bd454ea6

View File

@ -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);