Move content to docs folder and fix docker-compose(#367)

This commit is contained in:
Dmitri Karpovich
2023-08-05 23:03:48 +02:00
committed by GitHub
parent 54d715c5c3
commit c4ef65983e
1428 changed files with 17 additions and 10 deletions

View File

@ -1,21 +0,0 @@
jQuery(document).ready(function($) {
$('.level-bar-inner').css('width', '0');
$(window).on('load', function() {
$('.level-bar-inner').each(function() {
var itemWidth = $(this).data('level');
$(this).animate({
width: itemWidth
}, 800);
});
});
});

View File

@ -1 +0,0 @@
jQuery(document).ready(function($){$(".level-bar-inner").css("width","0"),$(window).on("load",function(){$(".level-bar-inner").each(function(){var n=$(this).data("level");$(this).animate({width:n},800)})})});