Skip to content

Commit

Permalink
fix(js): add wrapper for all tables except highlighted code-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
panda-z committed Apr 18, 2020
1 parent 8ffa827 commit b83e5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/even.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Even.sequence = function() {
};

Even.responsiveTable = function() {
const tables = document.querySelectorAll('.post-content > table');
const tables = document.querySelectorAll('.post-content table:not(.lntable)');
for (let i = 0; i < tables.length; i++) {
const table = tables[i];
const wrapper = document.createElement('div');
Expand Down

0 comments on commit b83e5fe

Please sign in to comment.