use break-word instead of break-all everywhere
This commit is contained in:
@ -242,7 +242,7 @@ $query = http_build_query(array_filter(array(
|
||||
}, 15000);
|
||||
|
||||
function notificaton(message){
|
||||
var notif = "<div class='notif error' style='border-left:3px solid red; background-color:pink;'> <div class='notifContents'> <div style='flex: 0 0 60px; background-size:cover; border-radius:5px;'></div> <div style='flex: 1; padding-left:5px; padding-right:5px; word-break: break-all; overflow:hidden;'> <span>"+message+"</span> </div> </div> </div>";
|
||||
var notif = "<div class='notif error' style='border-left:3px solid red; background-color:pink;'> <div class='notifContents'> <div style='flex: 0 0 60px; background-size:cover; border-radius:5px;'></div> <div style='flex: 1; padding-left:5px; padding-right:5px; word-break: break-word; overflow:hidden;'> <span>"+message+"</span> </div> </div> </div>";
|
||||
$('#hiddenside').append(notif);
|
||||
$('#hiddenside').children().each(function(index) {
|
||||
$(this).delay(4000 + (1000 * index)).fadeOut("slow");
|
||||
|
Reference in New Issue
Block a user