Skip to content

Commit

Permalink
correctly toggle adminboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
issackelly committed Apr 5, 2011
1 parent 66e5051 commit 48a2bd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servee/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION = (0, 6, 0, "a", 1) # following PEP 386
DEV_N = "18"
DEV_N = "19"


# cribbed from pinax
Expand Down
3 changes: 2 additions & 1 deletion servee/frontendadmin/templates/servee/wysiwyg/tools.html
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ <h6><a href="#" class="f-block" title="Heading 6">Heading 6</a></h6>
srv_hide_adminBox(ab);
}
else{
srv_hide_all_adminBox();
srv_show_adminBox(ab);
}
}
Expand All @@ -260,7 +261,7 @@ <h6><a href="#" class="f-block" title="Heading 6">Heading 6</a></h6>
/**
Animation Hide
**/
$("#"+ab).removeClass("out");
$("#"+ab).removeClass("out").find("*").removeClass("out");
$("#srv_wysiwyg_tools").removeClass(ab);
srv_admin_boxes[ab].shown = false;
if(move_wysiwyg){
Expand Down

0 comments on commit 48a2bd4

Please sign in to comment.