1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/_javascripts/reformat-html.js

6 lines
214 B
JavaScript
Raw Normal View History

2018-05-29 11:28:00 +10:00
$(document).ready(function () {
// Reformat all tables as Bootstrap responsive tables
$('table.tableblock').each(function(){
$(this).addClass('table').wrap("<div class='table-responsive'></div>");
});
});