From b037cfbfdba7c7fe79fe93a0c5724af48999759a Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 29 Jun 2017 17:25:06 +0200 Subject: [PATCH] set usage tips relative to bottom of screen, not top --- www/common/common-interface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/common-interface.js b/www/common/common-interface.js index 755e75a8e..e6927c70d 100644 --- a/www/common/common-interface.js +++ b/www/common/common-interface.js @@ -203,7 +203,7 @@ define([ var $loadingTip = $('
', {'id': 'loadingTip'}); $('', {'class': 'tips'}).text(getRandomTip()).appendTo($loadingTip); $loadingTip.css({ - 'top': $('body').height()/2 + $container.height()/2 + 20 + 'px' + 'bottom': $('body').height()/2 - $container.height()/2 + 20 + 'px' }); $('body').append($loadingTip); }