make loading screen tip presence configurable

This commit is contained in:
ansuz
2017-12-21 18:09:49 +01:00
parent 892dfb18f7
commit c0b5dc7536
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ define(function() {
*/
config.notificationTimeout = 5000;
config.disableUserlistNotifications = false;
config.hideLoadingScreenTips = false;
config.enablePinning = true;

View File

@@ -430,7 +430,7 @@ define([
UI.addLoadingScreen = function (config) {
config = config || {};
var loadingText = config.loadingText;
var hideTips = config.hideTips;
var hideTips = config.hideTips || AppConfig.hideLoadingScreenTips;
var hideLogo = config.hideLogo;
var $loading, $container;
if ($('#' + LOADING).length) {