-
-
Save brunoalvarenga/7146535c3df8ff56ce752157163fa19f to your computer and use it in GitHub Desktop.
It will help you to solve the Dokan plugin dashboard related tables responsive issue.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function($) { | |
$(".dokan-dashboard-content .dokan-table").addClass("table"); | |
$( ".dokan-dashboard-content .dokan-table" ).before( "<div class='table-responsive'></div>" ); | |
$( ".dokan-dashboard-content .table-responsive" ).append( $( ".dokan-table" ) ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment