A quick JavaScript solution directly from TinyMCE:
<script> // Prevent jQuery UI dialog from blocking focusin $(document).on('focusin', function(e) { if ($(event.target).closest(".mce-window").length) { e.stopImmediatePropagation(); } }); </script>
Technical blog with tips and tricks for everything and more...
This PowerShell script organizes and renames all photos in a selected folder using EXIF data. It will also create thumbnails of the images i...
<script> // Prevent jQuery UI dialog from blocking focusin $(document).on('focusin', function(e) { if ($(event.target).closest(".mce-window").length) { e.stopImmediatePropagation(); } }); </script>
<!DOCTYPE html> <head> <title>Bitstamp realtime trade ticket via WebSocket Pusher</title> <script src="http://js.pusher.com/2.2/pusher.min.js" type="text/javascript"></script> <script type="text/javascript"> // Enable pusher logging - don't include this in production Pusher.log = function(message) { if (window.console && window.console.log) { window.console.log(message); if (message.id !== undefined) { // window.console.log('id:' + message.id + ' price: ' + message.price + ' amount: ' + message.amount); } } }; // Bitstamp Live Ticker var pusher = new Pusher('de504dc5763aeef9ff52'); var channel = pusher.subscribe('live_trades'); channel.bind('trade', function(data) { window.console.log('id:' + data.id + ' price: ' + data.price + ' amount: ' + data.amount); }); </script> </head>