make loading screen tip presence configurable

pull/1/head
ansuz 7 years ago
parent 892dfb18f7
commit c0b5dc7536

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

@ -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) {

Loading…
Cancel
Save