(properties)
| 1148 | } |
| 1149 | |
| 1150 | function readVMerge(properties) { |
| 1151 | var element = properties.first("w:vMerge"); |
| 1152 | if (element) { |
| 1153 | var val = element.attributes["w:val"]; |
| 1154 | return val === "continue" || !val; |
| 1155 | } else { |
| 1156 | return null; |
| 1157 | } |
| 1158 | } |
| 1159 | |
| 1160 | function calculateRowSpans(rows) { |
| 1161 | var unexpectedNonRows = _.any(rows, function(row) { |