add show more functionality to notifications. don't scroll to the top of the page when clicked

This commit is contained in:
Dan Hansen 2011-04-27 16:29:08 -05:00
parent 4a101f25d9
commit 6a9df590d0

View file

@ -19,6 +19,13 @@
type: "PUT"
});
});
$("a.more").live("click", function(evt) {
evt.preventDefault();
$(this).hide()
.next(".hidden")
.removeClass("hidden");
});
};
};