mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-12 18:17:42 -04:00
Renamed most, if not all css selectors from gName to g-name. Moved a few shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<li class="gOrganizeAlbum ui-icon-left <?= access::can("edit", $album) ? "" : "gViewOnly" ?>"
|
||||
<li class="g-organize-album ui-icon-left <?= access::can("edit", $album) ? "" : "g-view-only" ?>"
|
||||
ref="<?= $album->id ?>">
|
||||
<span class="ui-icon ui-icon-minus">
|
||||
</span>
|
||||
<span class="gOrganizeAlbumText <?= $selected && $album->id == $selected->id ? "selected" : "" ?>"
|
||||
<span class="g-organize-album-text <?= $selected && $album->id == $selected->id ? "selected" : "" ?>"
|
||||
ref="<?= $album->id ?>">
|
||||
<?= html::clean($album->title) ?>
|
||||
</span>
|
||||
@@ -12,11 +12,11 @@
|
||||
<? if ($selected && $child->contains($selected)): ?>
|
||||
<?= View::factory("organize_tree.html", array("selected" => $selected, "album" => $child)); ?>
|
||||
<? else: ?>
|
||||
<li class="gOrganizeAlbum ui-icon-left <?= access::can("edit", $child) ? "" : "gViewOnly" ?>"
|
||||
<li class="g-organize-album ui-icon-left <?= access::can("edit", $child) ? "" : "g-view-only" ?>"
|
||||
ref="<?= $child->id ?>">
|
||||
<span class="ui-icon ui-icon-plus">
|
||||
</span>
|
||||
<span class="gOrganizeAlbumText" ref="<?= $child->id ?>">
|
||||
<span class="g-organize-album-text" ref="<?= $child->id ?>">
|
||||
<?= html::clean($child->title) ?>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user