Skip to content

Commit

Permalink
Add ability to force data tables init for modules
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed May 10, 2020
1 parent f5cc393 commit ca01c9c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions authentic.pl
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,11 @@ sub theme_generate_icon

sub theme_ui_columns_start
{
my ($heads, $width, $noborder, $tdtags, $title) = @_;
my ($heads, $width, $noborder, $tdtags, $title, $sortable) = @_;
my ($rv, $i);

$rv .= '<table class="table table-striped table-hover table-condensed">' . "\n";
$sortable = ' dtable-sortable' if ($sortable);
$rv .= "<table class=\"table table-striped table-hover table-condensed$sortable\">" . "\n";
if ($title) {
$rv .= "<caption>$title</caption>\n";
}
Expand Down
2 changes: 1 addition & 1 deletion theme.info
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
desc=Authentic Theme
longdesc=Webmin/Usermin/Virtualmin/Cloudmin theme based on Bootstrap and Font Awesome (https://github.com/authentic-theme/authentic-theme)
version=19.50-RC1
mversion=05
mversion=06
depends=1.950 1.800
webmin=1
usermin=1
2 changes: 1 addition & 1 deletion unauthenticated/css/bundle.min.css

Large diffs are not rendered by default.

Binary file modified unauthenticated/css/bundle.min.css.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions unauthenticated/js/bundle.min.js

Large diffs are not rendered by default.

Binary file modified unauthenticated/js/bundle.min.js.gz
Binary file not shown.

0 comments on commit ca01c9c

Please sign in to comment.