Skip to content

Commit

Permalink
Merge pull request #16 from september-werbeagentur/fix/ddd-view-position
Browse files Browse the repository at this point in the history
Move 3d view according to customer request
  • Loading branch information
Martin Hauke committed Aug 15, 2019
2 parents e450a8a + 89402b9 commit d8ff780
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
<?= $this->description; ?>
</div>
</article>
<?php if ($this->ddd_view): ?>
<iframe width="100%" height="400" class="swa-property-reader__3d-view" src="<?= $this->ddd_view; ?>"></iframe>
<?php endif; ?>
<?php if (count($this->sliderImagePaths) > 0) : ?>
<div class="swa-property-reader__slider">
<?php $this->insert('mod_imageslider', array('imagepaths' => $this->sliderImagePaths)); ?>
Expand All @@ -34,6 +31,9 @@
<li class="swa-property-reader__feature"><?= $feature; ?></li>
<?php endforeach; ?>
</ul>
<?php if ($this->ddd_view): ?>
<iframe width="100%" height="400" class="swa-property-reader__3d-view" src="<?= $this->ddd_view; ?>"></iframe>
<?php endif; ?>
<?php $this->insert('mod_objectlist', array('objects' => $this->objects, 'jumpTo' => $this->jumpTo)); ?>
</div>
<?php $this->endblock(); ?>

0 comments on commit d8ff780

Please sign in to comment.