fix double PDF Head in Motions (fixes #3025)

This commit is contained in:
Sean Engelhardt 2017-03-08 10:22:58 +01:00 committed by Emanuel Schütze
parent a33f0dd668
commit 259e338b17

View File

@ -531,10 +531,35 @@ angular.module('OpenSlidesApp.core.pdf', [])
case "h4": case "h4":
case "h5": case "h5":
case "h6": case "h6":
currentParagraph = create("text"); // Special case quick fix to handle the dirty HTML format*/
currentParagraph.marginBottom = 4; // see following issue: https://github.com/OpenSlides/OpenSlides/issues/3025
currentParagraph.marginTop = 10; if (lineNumberMode === "outside") {
/* falls through */ var HeaderOutsideLineNumber = {
width: 20,
text: element.childNodes[0].getAttribute("data-line-number"),
color: "gray",
fontSize: 8,
margin: [0, 2, 0, 0]
};
var HeaderOutsideLineNumberText = {
text: element.childNodes[1].textContent,
};
ComputeStyle(HeaderOutsideLineNumberText, elementStyles[nodeName]);
var HeaderOutsideLineNumberColumns = {
columns: [
HeaderOutsideLineNumber,
HeaderOutsideLineNumberText
]
};
alreadyConverted.push(HeaderOutsideLineNumberColumns);
} else {
currentParagraph = create("text");
currentParagraph.marginBottom = 4;
currentParagraph.marginTop = 10;
currentParagraph = parseChildren(alreadyConverted, element, currentParagraph, styles.concat(elementStyles[nodeName]), diff_mode);
alreadyConverted.push(currentParagraph);
}
break;
case "a": case "a":
currentParagraph = parseChildren(alreadyConverted, element, currentParagraph, styles.concat(elementStyles[nodeName]), diff_mode); currentParagraph = parseChildren(alreadyConverted, element, currentParagraph, styles.concat(elementStyles[nodeName]), diff_mode);
alreadyConverted.push(currentParagraph); alreadyConverted.push(currentParagraph);