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
How to print a Bootstrap Modal (this was for Drupal 7 site as a FYI): | |
Add this to the modal | |
<button type="button" class="btn btn-default print" onClick="window.print();return false">Print</button> | |
Create a JS file and do this: | |
( function($) { | |
$(document).ready(function(){ | |
// Add Print Classes for Modal | |
$('.modal').on('shown.bs.modal',function() { |