@icvdeveloper/common-module 2.6.2 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/dist/module.json
CHANGED
|
@@ -35,6 +35,7 @@ const {
|
|
|
35
35
|
showInfoLink,
|
|
36
36
|
useAccordion,
|
|
37
37
|
usePresenterModal,
|
|
38
|
+
showPresenterImages,
|
|
38
39
|
showPresenterDescription,
|
|
39
40
|
} = useAgenda(conference);
|
|
40
41
|
const {
|
|
@@ -285,7 +286,7 @@ const presentersContainer = computed(() => {
|
|
|
285
286
|
<CommonPresenterModal
|
|
286
287
|
v-if="usePresenterModal()"
|
|
287
288
|
:use-icon="false"
|
|
288
|
-
:show-img="
|
|
289
|
+
:show-img="showPresenterImages()"
|
|
289
290
|
:presenter="presenter"
|
|
290
291
|
:is-small-grouped-track="
|
|
291
292
|
isSmallGroupedTrack(group_or_track)
|
|
@@ -160,6 +160,9 @@ export const useAgenda = (conference) => {
|
|
|
160
160
|
const usePresenterModal = () => {
|
|
161
161
|
return pagesConfigValue("agenda.use_presenter_modal");
|
|
162
162
|
};
|
|
163
|
+
const showPresenterImages = () => {
|
|
164
|
+
return pagesConfigValue("agenda.show_presenter_images", true);
|
|
165
|
+
};
|
|
163
166
|
const showPresenterDescription = (presenter, presentation) => {
|
|
164
167
|
if (selectedPresenter.value?.presentationId === presentation.id && selectedPresenter.value?.id === presenter.id) {
|
|
165
168
|
selectedPresenter.value = null;
|
|
@@ -270,6 +273,7 @@ export const useAgenda = (conference) => {
|
|
|
270
273
|
getTrackClasses,
|
|
271
274
|
showInfoLink,
|
|
272
275
|
useAccordion,
|
|
276
|
+
showPresenterImages,
|
|
273
277
|
usePresenterModal,
|
|
274
278
|
showPresenterDescription,
|
|
275
279
|
playPresentation,
|