I am developing a dashboard for the customer and here is such a nuance - when viewing the page, the lower blocks are incorrectly displayed, but if you change the size of the browser window, they stand up normally. Here is the work code and the name of the plugin, respectively. .inner_rb_wrapper - shell class to which the JS script is applied (for internal blocks)
<script src="/template/js/jquery-3.1.1.min.js"></script> <script src="/template/js/plugins/jquery.freetile.min.js"></script> <script> $(window).on('load resize', function() { if ($(window).width() > 425) { $('.inner_rb_wrapper').freetile({ animate: true, elementDelay: 30 }); } }); </script>