Skip to content

Commit

Permalink
Reduced timeout for message display.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwholdsworth committed May 12, 2013
1 parent 6d3367b commit 934c265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/frontend.js
Expand Up @@ -240,7 +240,7 @@ function displayMessage(message, level, timeout) {
level = 'error';
}
if (timeout === undefined) {
timeout = 4000;
timeout = 1000;
}
$('#alert').attr('class', 'alert alert-' + level);
$('#alert div').html(message);
Expand Down

0 comments on commit 934c265

Please sign in to comment.