This commit is contained in:
FinnStutzenstein 2016-09-27 11:47:57 +02:00
parent a02a39e7ae
commit 673ee1da18

View File

@ -484,6 +484,12 @@ angular.module('OpenSlidesApp.core.site', [
if (styles) {
ComputeStyle(temporary, styles);
}
// TODO: This if-clause is a hotfix for issue #2442.
// Do this right! Why is currentParagraph undefined?
if (!currentParagraph) {
currentParagraph = {};
currentParagraph.text = [];
}
currentParagraph.text.push(temporary);
break;
}