diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 22:55:09 -0700 |
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 22:55:09 -0700 |
| commit | fb2c365d8fdaa6941b61edac26df2f3550822e6e (patch) | |
| tree | 5b5037515e7a17561e3895094b0c31bd312bbaa6 /modules/organize/views/organize_thumb_grid.html.php | |
| parent | dcfa74e2d9084a4dd9ac56333c47d6fdbee46707 (diff) | |
Fix outstanding issues in the organize dialog. Tighten up the layout a bit so that more microthumbs will display.
Diffstat (limited to 'modules/organize/views/organize_thumb_grid.html.php')
| -rw-r--r-- | modules/organize/views/organize_thumb_grid.html.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/organize/views/organize_thumb_grid.html.php b/modules/organize/views/organize_thumb_grid.html.php index f28176de..3ac32ce0 100644 --- a/modules/organize/views/organize_thumb_grid.html.php +++ b/modules/organize/views/organize_thumb_grid.html.php @@ -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 ?> |
