VRFS-299 notification now slides up from bottom of screen

This commit is contained in:
Brian Smith 2013-06-11 23:59:57 -04:00
parent 039275da9a
commit 09fc3f6caf
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}