summaryrefslogtreecommitdiff
path: root/modules/organize/js
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-09-30 22:49:36 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-09-30 22:49:36 -0600
commite1e8904e4a82792effd721fc0b4c028d86cf177a (patch)
tree5cd03d6eea9c3f40c2523dcddf3871450f971bc2 /modules/organize/js
parent1f02c1ef6ef26a1f96e27b6ecede6388e4132e15 (diff)
Convert gDialog and gCancel over to g-dialog and g-cancel. Refactor CSS id's and classes in the login/reset password dialog.
Diffstat (limited to 'modules/organize/js')
-rw-r--r--modules/organize/js/organize.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/organize/js/organize.js b/modules/organize/js/organize.js
index cfaff01c..bee42a22 100644
--- a/modules/organize/js/organize.js
+++ b/modules/organize/js/organize.js
@@ -138,19 +138,19 @@
var self = this;
// Deal with ui.jquery bug: http://dev.jqueryui.com/ticket/4475 (target 1.8?)
$(".sf-menu li.sfHover ul").css("z-index", 68);
- $("#gDialog").dialog("option", "zIndex", 70);
- $("#gDialog").bind("dialogopen", function(event, ui) {
- $("#gOrganize").height($("#gDialog").innerHeight() - 20);
- $("#gOrganizeMicroThumbPanel").height($("#gDialog").innerHeight() - 90);
- $("#gOrganizeTreeContainer").height($("#gDialog").innerHeight() - 59);
+ $("#g-dialog").dialog("option", "zIndex", 70);
+ $("#g-dialog").bind("dialogopen", function(event, ui) {
+ $("#gOrganize").height($("#g-dialog").innerHeight() - 20);
+ $("#gOrganizeMicroThumbPanel").height($("#g-dialog").innerHeight() - 90);
+ $("#gOrganizeTreeContainer").height($("#g-dialog").innerHeight() - 59);
});
- $("#gDialog").bind("dialogclose", function(event, ui) {
+ $("#g-dialog").bind("dialogclose", function(event, ui) {
window.location.reload();
});
- $("#gDialog #gOrganizeClose").click(function(event) {
- $("#gDialog").dialog("close");
+ $("#g-dialog #gOrganizeClose").click(function(event) {
+ $("#g-dialog").dialog("close");
});
$("#gOrganizeSortColumn,#gOrganizeSortOrder").change(function(event) {