Changes between Initial Version and Version 1 of Ticket #10422
- Timestamp:
- May 15, 2013, 1:10:34 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10422
-
Property
Status
changed from
new
toconfirmed
-
Property
Version
changed from
4.1.1
to4.0 Beta
-
Property
Status
changed from
-
Ticket #10422 – Description
initial v1 1 1 The function never fires,if config.fillEmptyBlocks is a function,although there are empty elements and a is placed instead just as if config.fillEmptyBlocks was true [<div class="block"> </div>] 2 2 If config.fillEmptyBlocks=false it works as expected [<div class="block"></div>] 3 3 {{{ 4 4 config.fillEmptyBlocks = function( element ) 5 5 { … … 8 8 return false; 9 9 } 10 }}}