mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-29 03:04:08 -04:00
CSS rename: gMicroThumbXxx -> gOrganizeMicroThumbXxx to make it clear
that this is organize only.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<? foreach ($album->children(25, $offset) as $child): ?>
|
||||
<li class="gMicroThumbGridCell" ref="<?= $child->id ?>">
|
||||
<div id="gMicroThumb_<?= $child->id ?>"
|
||||
class="gMicroThumb <?= $child->is_album() ? "gAlbum" : "gPhoto" ?>">
|
||||
<li class="gOrganizeMicroThumbGridCell" ref="<?= $child->id ?>">
|
||||
<div id="gOrganizeMicroThumb_<?= $child->id ?>"
|
||||
class="gOrganizeMicroThumb <?= $child->is_album() ? "gAlbum" : "gPhoto" ?>">
|
||||
<?= $child->thumb_img(array("class" => "gThumbnail", "ref" => $child->id), 90, true) ?>
|
||||
</div>
|
||||
</li>
|
||||
@@ -13,7 +13,7 @@
|
||||
setTimeout(function() {
|
||||
$.get("<?= url::site("organize/content/$album->id/" . ($offset + 25)) ?>",
|
||||
function(data) {
|
||||
$("#gMicroThumbGrid").append(data);
|
||||
$("#gOrganizeMicroThumbGrid").append(data);
|
||||
$.organize.set_handlers();
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user