make wide tables scrollable on mobile

This commit is contained in:
bux578
2016-10-03 07:02:50 +02:00
parent 05d30c5573
commit c57e2e1cd0
7 changed files with 30 additions and 11 deletions

View File

@ -5191,6 +5191,12 @@ jQuery(document).ready(function(){
}
}
var $tables = $("#content table");
$tables.each(function(index, item) {
var $table = $(item);
$table.wrap("<div class=\"table-wrapper\">")
});
});
window.app = window.app || {};

12
docs/js/footer.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long