diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-18 05:16:11 +0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-18 05:18:41 +0800 |
commit | afa8cade7fc948b064636d4e9ecfb03e4c2c67d7 (patch) | |
tree | ff24df0ee2cf0150790ccc596f5062465d0ce46b /modules/server_add/views | |
parent | 693e95e7b092fdbbae6ab59314230d234efffd5b (diff) |
Fix for ticket #590. The gallery.dialog.js looks for an element "#dialog #gProgress" and if it finds it assumes that it is a progress dialog and removes the title. This pathc changes the name of the div containing the progress bar to gServerAddProgress and avoids the issue.
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
Diffstat (limited to 'modules/server_add/views')
-rw-r--r-- | modules/server_add/views/server_add_tree_dialog.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/server_add/views/server_add_tree_dialog.html.php b/modules/server_add/views/server_add_tree_dialog.html.php index 5c5dfd0f..431635f8 100644 --- a/modules/server_add/views/server_add_tree_dialog.html.php +++ b/modules/server_add/views/server_add_tree_dialog.html.php @@ -23,7 +23,7 @@ <?= $tree ?> </ul> - <div id="gProgress" style="display: none"> + <div id="gServerAddProgress" style="display: none"> <div class="gProgressBar"></div> <div id="gStatus"></div> </div> @@ -46,7 +46,7 @@ $("#gServerAdd .gProgressBar"). progressbar(). progressbar("value", 0); - $("#gProgress").slideDown("fast", function() { start_add() }); + $("#gServerAddProgress").slideDown("fast", function() { start_add() }); }); $("#gServerCloseButton").click(function(event) { $("#gDialog").dialog("close"); |