mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 21:46:22 +01:00
6 lines
214 B
JavaScript
6 lines
214 B
JavaScript
|
|
$(document).ready(function () {
|
||
|
|
// Reformat all tables as Bootstrap responsive tables
|
||
|
|
$('table.tableblock').each(function(){
|
||
|
|
$(this).addClass('table').wrap("<div class='table-responsive'></div>");
|
||
|
|
});
|
||
|
|
});
|