Fix outstanding issues in the organize dialog. Tighten up the layout a bit so that more microthumbs will display.

This commit is contained in:
Chad Kieffer
2009-11-15 22:55:09 -07:00
parent dcfa74e2d9
commit fb2c365d8f
5 changed files with 97 additions and 92 deletions

View File

@@ -1,9 +1,10 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? foreach ($album->children(25, $offset) as $child): ?>
<li class="g-organize-microthumb-grid-cell g-left" ref="<?= $child->id ?>">
<div id="g-organize-microthumb_<?= $child->id ?>"
<div id="g-organize-microthumb-<?= $child->id ?>"
class="g-organize-microthumb <?= $child->is_album() ? "g-album" : "g-photo" ?>">
<?= $child->thumb_img(array("class" => "g-thumbnail", "ref" => $child->id), 90, true) ?>
<span<?= $child->is_album() ? " class=\"ui-icon ui-icon-note\"" : "" ?>></span>
</div>
</li>
<? endforeach ?>