$(function () { // Remove unviewed status when normally clicked $('.diff-link').click(function () { $(this).closest('.unviewed').removeClass('unviewed'); }); $('td[data-timestamp]').each(function () { $(this).prop('title', new Intl.DateTimeFormat(undefined, { dateStyle: 'full', timeStyle: 'long' }).format($(this).data('timestamp') * 1000)); }) $("#checkbox-assign-tag").click(function (e) { $('#op_extradata').val(prompt("Enter a tag name")); }); $('.with-share-link > *').click(function () { $("#copied-clipboard").remove(); var range = document.createRange(); var n = $("#share-link")[0]; range.selectNode(n); window.getSelection().removeAllRanges(); window.getSelection().addRange(range); document.execCommand("copy"); window.getSelection().removeAllRanges(); $('.with-share-link').append('Copied to clipboard'); $("#copied-clipboard").fadeOut(2500, function () { $(this).remove(); }); }); $(".watch-table tr").click(function (event) { var tagName = event.target.tagName.toLowerCase(); if (tagName === 'tr' || tagName === 'td') { var x = $('input[type=checkbox]', this); if (x) { $(x).click(); } } }); // checkboxes - check all $("#check-all").click(function (e) { $('input[type=checkbox]').not(this).prop('checked', this.checked); }); // checkboxes - show/hide buttons $("input[type=checkbox]").click(function (e) { if ($('input[type=checkbox]:checked').length) { $('#checkbox-operations').slideDown(); } else { $('#checkbox-operations').slideUp(); } }); });