Skip to content

Commit

Permalink
fix(style): table class name in fixHugoOutput (#2897)
Browse files Browse the repository at this point in the history
addClass must be called with class name only instead of '.table' as class name
  • Loading branch information
samysweb authored Dec 27, 2022
1 parent 943f2eb commit 549d2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/wowchemy/assets/js/wowchemy.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function fixHugoOutput() {
$("input[type='checkbox'][disabled]").parents('ul').addClass('task-list');

// Bootstrap table style is opt-in and Goldmark doesn't add it.
$('table').addClass('.table');
$('table').addClass('table');
}

// Get an element's siblings.
Expand Down

0 comments on commit 549d2cd

Please sign in to comment.