From f5e6c04d7cb9d2fa0e88f0007216054494de5161 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Fri, 29 Nov 2013 23:22:33 -0500 Subject: [PATCH] Logged in alert on index page can now be closed, changed style --- app.js | 5 ++++- views/index.jade | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index c00c2de98b..88ac19cf10 100755 --- a/app.js +++ b/app.js @@ -75,4 +75,7 @@ app.get('*', home.index); app.listen(app.get('port'), function() { console.log('Express server listening on port ' + app.get('port')); -}); \ No newline at end of file +}); + +// TODO: List.js for examples +// TODO: jquery-spinner for some examples (signup page?) diff --git a/views/index.jade b/views/index.jade index 926a3ca786..bd60f68be9 100644 --- a/views/index.jade +++ b/views/index.jade @@ -9,4 +9,6 @@ block content | All you get is this text and a mostly barebones HTML document. if user - .alert.alert-info Congratulations, you are logged in! \ No newline at end of file + .alert.alert-success.fade.in + button.close(type='button', data-dismiss='alert', aria-hidden='true') × + | Congratulations, you are logged in! \ No newline at end of file