More progress on the application page.

Created and styled the forms for updating user/timeline information.
Wired the hidden forms to links that expose them using jQuery.
This commit is contained in:
Jonathan Bernard
2011-02-12 07:48:19 -06:00
parent 9c645e9a88
commit 6197363508
4 changed files with 205 additions and 31 deletions

19
www/js/ts.js Normal file
View File

@ -0,0 +1,19 @@
function toggleUserInfo(event) {
$("#user-info").slideToggle("slow");
event.preventDefault();
}
function showChangePwd(event) {
$("#change-pwd").slideToggle("slow");
}
function updateUser(event) {
alert("TODO: update user via AJAX.");
event.preventDefault();
}
function toggleTimelineInfo(event) {
$("#timeline-info").slideToggle("slow");
event.preventDefault();
}