increase timeout of noty error

This commit is contained in:
Uwe Steinmann 2018-04-10 19:13:57 +02:00
parent ea99276a9c
commit 162353b5e0

View File

@ -82,11 +82,11 @@ function check_queue() {
$('#status_'+data.data).html('<?php printMLText('index_error'); ?>'); $('#status_'+data.data).html('<?php printMLText('index_error'); ?>');
noty({ noty({
text: data.message, text: data.message,
type: (data.success) ? 'success' : 'error', type: 'error',
dismissQueue: true, dismissQueue: true,
layout: 'topRight', layout: 'topRight',
theme: 'defaultTheme', theme: 'defaultTheme',
timeout: 1500, timeout: 25000,
}); });
} }
}, },