Merge pull request #3314 from FinnStutzenstein/Bugfixes

Minor Bugfixes (fixes #3312, fixes #3313)
This commit is contained in:
Norman Jäckel 2017-06-29 10:45:13 +02:00 committed by GitHub
commit 1701fd72f2
2 changed files with 7 additions and 2 deletions

View File

@ -613,7 +613,11 @@ angular.module('OpenSlidesApp.motions', [
}, },
isRelatedProjected: function () { isRelatedProjected: function () {
// A motion related object is the list of speakers (through the agenda item) // A motion related object is the list of speakers (through the agenda item)
return this.agenda_item.isListOfSpeakersProjected(); if (this.agenda_item) {
return this.agenda_item.isListOfSpeakersProjected();
} else {
return [];
}
}, },
}, },
relations: { relations: {

View File

@ -375,11 +375,12 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf'])
.factory('MotionPartialContentProvider', [ .factory('MotionPartialContentProvider', [
'$q', '$q',
'gettextCatalog', 'gettextCatalog',
'Config',
'PDFLayout', 'PDFLayout',
'PdfMakeConverter', 'PdfMakeConverter',
'ImageConverter', 'ImageConverter',
'HTMLValidizer', 'HTMLValidizer',
function ($q, gettextCatalog, PDFLayout, PdfMakeConverter, ImageConverter, HTMLValidizer) { function ($q, gettextCatalog, Config, PDFLayout, PdfMakeConverter, ImageConverter, HTMLValidizer) {
/* /*
* content should be an array of content blocks. Each content is an object providing a * content should be an array of content blocks. Each content is an object providing a
* heading and a text. E.g. * heading and a text. E.g.