Skip to content
Snippets Groups Projects
Commit 4300e784 authored by Demian Katz's avatar Demian Katz
Browse files

Don't render non-JS tree in lightbox mode; it just wastes bandwidth.

parent 25b45c87
No related merge requests found
...@@ -44,9 +44,11 @@ ...@@ -44,9 +44,11 @@
<input type="hidden" value="<?=$this->escapeHtml($this->driver->getUniqueId())?>" class="hiddenRecordId" /> <input type="hidden" value="<?=$this->escapeHtml($this->driver->getUniqueId())?>" class="hiddenRecordId" />
<input type="hidden" value="<?=$this->escapeHtml($activeTree)?>" class="hiddenHierarchyId" /> <input type="hidden" value="<?=$this->escapeHtml($activeTree)?>" class="hiddenHierarchyId" />
<input type="hidden" value="<?=isset($this->treeContext) ? $this->treeContext : 'Record'?>" class="hiddenContext" /> <input type="hidden" value="<?=isset($this->treeContext) ? $this->treeContext : 'Record'?>" class="hiddenContext" />
<noscript> <? if ($this->layout()->getTemplate() != 'layout/lightbox'): ?>
<?=$this->tab->renderTree($this->url('home'))?> <noscript>
</noscript> <?=$this->tab->renderTree($this->url('home'))?>
</noscript>
<? endif; ?>
</div> </div>
</div> </div>
<? endif; ?> <? endif; ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment