From 09fc3f6cafa71c7b7da8d0ae97aed99e4ff7542d Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 11 Jun 2013 23:59:57 -0400 Subject: [PATCH] VRFS-299 notification now slides up from bottom of screen --- app/assets/javascripts/layout.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/layout.js b/app/assets/javascripts/layout.js index aff6244f9..44b4bd5a2 100644 --- a/app/assets/javascripts/layout.js +++ b/app/assets/javascripts/layout.js @@ -273,7 +273,8 @@ var $notify = $('[layout="notify"]'); var nHeight = $notify.height(); var notifyStyle = { - top: screenHeight - (nHeight + 64) + 'px' + bottom: '0px', + position: 'fixed' }; $notify.css(notifyStyle); }