mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-29 10:26:46 -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:
@@ -5,37 +5,37 @@
|
||||
var sort_order_url = "<?= url::site("organize/sort_order/__ALBUM_ID__/__COL__/__DIR__?csrf=$csrf") ?>";
|
||||
var tree_url = "<?= url::site("organize/tree/__ALBUM_ID__") ?>";
|
||||
</script>
|
||||
<div id="gOrganize" class="g-dialogPanel">
|
||||
<div id="g-organize" class="g-dialog-panel">
|
||||
<h1 style="display:none"><?= t("Organize %name", array("name" => html::purify($album->title))) ?></h1>
|
||||
<div id="bd">
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<h3><?= t("Albums") ?></h3>
|
||||
</div>
|
||||
<div id="gMessage" class="yui-u">
|
||||
<div class="gInfo"><?= t("Drag and drop photos to re-order or move between albums") ?></div>
|
||||
<div id="g-action-status" class="yui-u">
|
||||
<div class="g-info"><?= t("Drag and drop photos to re-order or move between albums") ?></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="gOrganizeContentPane" class="yui-gf">
|
||||
<div id="gOrganizeTreeContainer" class="yui-u first">
|
||||
<ul id="gOrganizeAlbumTree">
|
||||
<div id="g-organizeContentPane" class="yui-gf">
|
||||
<div id="g-organizeTreeContainer" class="yui-u first">
|
||||
<ul id="g-organize-albumTree">
|
||||
<?= $album_tree ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="gOrganizeDetail" class="yui-u">
|
||||
<div id="gOrganizeMicroThumbPanel"
|
||||
<div id="g-organizeDetail" class="yui-u">
|
||||
<div id="g-organize-microthumb-panel"
|
||||
ref="<?= url::site("organize/album/__ITEM_ID__/__OFFSET__") ?>">
|
||||
<ul id="gOrganizeMicroThumbGrid">
|
||||
<ul id="g-organize-microthumb-grid">
|
||||
<?= $micro_thumb_grid ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="gOrganizeControls">
|
||||
<a id="gOrganizeClose" href="#" ref="done"
|
||||
<div id="g-organizeControls">
|
||||
<a id="g-organizeClose" href="#" ref="done"
|
||||
class="g-button ui-corner-all ui-state-default"><?= t("Close") ?></a>
|
||||
<form>
|
||||
<?= t("Sort order") ?>
|
||||
<?= form::dropdown(array("id" => "gOrganizeSortColumn"), album::get_sort_order_options(), $album->sort_column) ?>
|
||||
<?= form::dropdown(array("id" => "gOrganizeSortOrder"), array("ASC" => "Ascending", "DESC" => "Descending"), $album->sort_order) ?>
|
||||
<?= form::dropdown(array("id" => "g-organize-sort-column"), album::get_sort_order_options(), $album->sort_column) ?>
|
||||
<?= form::dropdown(array("id" => "g-organize-sort-order"), array("ASC" => "Ascending", "DESC" => "Descending"), $album->sort_order) ?>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@@ -44,5 +44,5 @@
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$("#gOrganize").ready($.organize.init);
|
||||
$("#g-organize").ready($.organize.init);
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user