Some funny little change

:)
This commit is contained in:
Masahiko AMANO
2022-02-09 19:12:17 +03:00
parent afa417d251
commit d1462470b1
5 changed files with 26 additions and 2 deletions
+4
View File
File diff suppressed because one or more lines are too long
+17 -1
View File
@@ -87,4 +87,20 @@ $('.closebtn').click(function () {
$('.process').css('display', 'none');
$('.error').css('display', 'none');
$('.complete').css('display', 'none');
});
});
$(window).on('load', function() {
let msg = 'И что это мы тут забыли?\nА ну кыш отседова!\nНашлись тут кулхацкеры понимаешь!';
let style = [
'padding: 1rem;',
'font-family: monospace;',
'font-size: 18pt;',
].join('');
console.log('%c%s', style, msg);
$.ajax({
url: './images/angry_huffman',
success: function(data) {
console.image(data);
},
});
});