revert nested navlinks

This commit is contained in:
albert
2013-02-19 12:59:59 -05:00
parent dbb0808eaf
commit 68161f7b85
3 changed files with 10 additions and 30 deletions

View File

@@ -3,26 +3,6 @@ $(function() {
$(".striped tbody tr:even").addClass("even");
$(".striped tbody tr:odd").addClass("odd");
// More link
if ($("#site-map-link").length > 0) {
$("#site-map-link").click(function(e) {
$("#more-links").toggle();
e.preventDefault();
e.stopPropagation();
});
$("#more-links").show();
$("#more-links").position({
of: $("#site-map-link"),
my: "left top",
at: "left top"
}).hide();
$(document).click(function(e) {
$("#more-links").hide();
});
}
// Account notices
$("#hide-sign-up-notice").click(function(e) {
$("#sign-up-notice").hide();