up'd the timeout for both default alert toasters

This commit is contained in:
psychobunny
2016-06-07 09:47:29 -04:00
parent 51adcc479c
commit 1bcaf7bca3

View File

@@ -117,7 +117,7 @@ app.cacheBuster = null;
title: '[[global:alert.success]]',
message: message,
type: 'success',
timeout: timeout ? timeout : 2000
timeout: timeout ? timeout : 5000
});
};
@@ -126,7 +126,7 @@ app.cacheBuster = null;
title: '[[global:alert.error]]',
message: message,
type: 'danger',
timeout: timeout ? timeout : 5000
timeout: timeout ? timeout : 10000
});
};