Skip to content

Commit

Permalink
modal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Dec 22, 2017
1 parent 15c48e1 commit 699a436
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Expand Up @@ -136,9 +136,8 @@
. ' data-language="' . $this->escape($lang) . '"';
?>
<a class="select-link" href="javascript:void(0)" <?php echo $attribs; ?>>
<?php echo $this->escape($item->title); ?>
</a>
<span class="small" title="<?php echo $this->escape($item->path); ?>">
<?php echo $this->escape($item->title); ?></a>
<span class="small">
<?php if (empty($item->note)) : ?>
<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS', $this->escape($item->alias)); ?>
<?php else : ?>
Expand Down
2 changes: 1 addition & 1 deletion media/com_wrapper/js/iframe-height.js
@@ -1,7 +1,7 @@
function iFrameHeight()
{
var height = 0;
var iframe = document.getElementById('blockrandom');
var iframe = document.querySelectorAll('*[id^="blockrandom"]');
var doc = 'contentDocument' in iframe ? iframe.contentDocument : iframe.contentWindow.document;

if (!document.all)
Expand Down

0 comments on commit 699a436

Please sign in to comment.