diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-09 16:33:14 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-09 16:33:14 +0000 |
| commit | 898eba8e6f666c2772b3e1be9126dd0d44791a11 (patch) | |
| tree | 5412fc0b7737ebab21f74f24fb41267f6645d51a /modules/organize/views/organize_thumb_grid.html.php | |
| parent | fe9b08e50636d8e66c0cd72306e2833314146bcc (diff) | |
Here is the current state of "organize". I'm having trouble getting
drag and drop to work. And to get it to layout properly. Any
thoughts would be appreciated.
Diffstat (limited to 'modules/organize/views/organize_thumb_grid.html.php')
| -rw-r--r-- | modules/organize/views/organize_thumb_grid.html.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/organize/views/organize_thumb_grid.html.php b/modules/organize/views/organize_thumb_grid.html.php index 1cbc4241..1f63f034 100644 --- a/modules/organize/views/organize_thumb_grid.html.php +++ b/modules/organize/views/organize_thumb_grid.html.php @@ -7,8 +7,14 @@ <? if ($child->is_album()): ?> <? $item_class = "gAlbum"; ?> <? endif ?> -<li id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>"> - <?= $child->micro_thumb_tag(array("class" => "gThumbnail"), $thumbsize) ?> +<li> + <div> + <div class="gOrganizeReorderDropTarget" ref="<?= $child->id ?>"> + </div> + <div id="gMicroThumb-<?= $child->id ?>" class="gMicroThumb <?= $item_class ?>"> + <?= $child->thumb_tag(array("class" => "gThumbnail"), $thumbsize, true) ?> + </div> + </div> </li> <? endforeach ?> |
