This fragment has been removed from University/js/gk.scripts.js file:
- Code: Select all
-     // Responsive tables
 jQuery('article section table').each(function (i, table) {
 table = jQuery(table);
 var heads = table.find('thead th');
 var cells = table.find('tbody td');
 var heads_amount = heads.length;
 // if there are the thead cells
 if (heads_amount) {
 var cells_len = cells.length;
 for (var j = 0; j < cells_len; j++) {
 var head_content = jQuery(heads.get(j % heads_amount)).text();
 jQuery(cells.get(j)).html('<span class="gk-table-label">' + head_content + '</span>' + jQuery(cells.get(j)).html());
 }
 }
 });
 
 
Works properly now, please remember about this during the next theme update.