Files
gallery3/modules/organize/views/organize_dialog.html.php
Bharat Mediratta 89597e7e70 Add a spinner to the dialog when loading the iframe so that it's not
just a blank dialog.  Create separate CSS for dialog vs. frame.
Don't show the Loading message for the first load.
2011-01-06 23:43:26 -08:00

24 lines
888 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<link rel="stylesheet" type="text/css" href="<?= url::file("modules/organize/css/organize_dialog.css") ?>" />
<script type="text/javascript">
var ORGANIZE_TITLE =
<?= t("Organize :: %album_title", array("album_title" => "__TITLE__"))->for_js() ?>;
var done_organizing = function(album_id) {
$("#g-dialog").dialog("close");
window.location = '<?= url::site("items/__ID__") ?>'.replace("__ID__", album_id);
}
var set_title = function(title) {
$("#g-dialog").dialog("option", "title", ORGANIZE_TITLE.replace("__TITLE__", title));
}
set_title("<?= $album->title ?>");
var done_loading = function() {
$("#g-organize-app-loading").hide();
}
</script>
<div id="g-organize-app-loading">&nbsp;</div>
<iframe id="g-organize-frame" src="<?= url::site("organize/frame/{$album->id}") ?>">
</iframe>