diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-22 16:09:57 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-22 16:09:57 +0000 |
| commit | 475b8fe9ff3f4eee077fd649a1e5aea2568c06b4 (patch) | |
| tree | a892d62e17c451db626d031e43753be71b364764 /modules/organize/views/organize_album.html.php | |
| parent | f9ec5d6de466b6a7c9eb4766ca228aff754284f5 (diff) | |
Dragging from the thumbgrid to an album in the tree now works.
Refactored the javascript to minimize duplication.
Diffstat (limited to 'modules/organize/views/organize_album.html.php')
| -rw-r--r-- | modules/organize/views/organize_album.html.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/organize/views/organize_album.html.php b/modules/organize/views/organize_album.html.php index 9f38a2cc..d4296918 100644 --- a/modules/organize/views/organize_album.html.php +++ b/modules/organize/views/organize_album.html.php @@ -3,13 +3,13 @@ <li class="gOrganizeBranch ui-icon-left" ref="<?= $album->id ?>"> <span id="gOrganizeIcon-<?= $album->id ?>" ref="<?= $album->id ?>" class="ui-icon <?= $album_icon ?><? if (empty($album_icon)): ?> gBranchEmpty<? endif ?>">> </span> - <span id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>" + <div id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>" class="<? if ($selected): ?>gBranchSelected <? endif ?>gBranchText"> <?= $album->title ?> - </span> - <span id="gOrganizeChildren-<?= $album->id ?>" + </div> + <div id="gOrganizeChildren-<?= $album->id ?>" class="<? if ($album_icon == "ui-icon-plus"): ?>gBranchCollapsed<? endif ?>"> <?= $children ?> - <span> + <div> </li> </ul> |
