Sha256: 949574e3d35a720f918167cb920592ac08d254dab00ae68758512de0a3910484
Contents?: true
Size: 508 Bytes
Versions: 10
Compression:
Stored size: 508 Bytes
Contents
$(document).ready(() => { $("body.email_conversations-show a.preview").click(function(e) { // logg(e, 'clicked') if ($(this).data('expanded')) { $(this).data('expanded', false) $(this).parent().find(".my-actions").addClass('hide') $(this).parent().find("iframe").css('display', 'none') } else { $(this).data('expanded', true) $(this).parent().find(".my-actions").removeClass('hide') $(this).parent().find("iframe").css('display', 'block') } }) })
Version data entries
10 entries across 10 versions & 1 rubygems