Created
March 10, 2016 07:44
-
-
Save mahbubme/6e2b20399b1cc9e0207e 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 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