(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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() { |