/* popup.js */ $(document).ready(function () { function show_popup() { $('#license_popupbg').fadeIn(300); $('#license_popup').show(); $('#license_popup').css("display", "block"); }; function hide_popup() { $('#license_popupbg').fadeOut(500); $('#license_popup').css("display", "none"); $('#license_popup').hide(); }; function license_download() { chosen = confirm("Download the LICENSE text file?"); if (chosen) { window.location = 'LICENSE'; }; console.log("download chosen: " + chosen); }; $('#license_button_open').click(show_popup); $('#license_button_exit').click(hide_popup); $('#license_button_download').click(license_download); /*$('#license_button_open').on("mouseout", hide_popup);*/ /*$('#license_button_exit').on("mouseover", hide_popup);*/ jQuery.get('LICENSE', function(t) { /*t = t.replace(/---/g, '
');*/ t = t.replace(/\n/g, '
'); $('#license_popup_content').html(t); }); });