From: Zach Copley Date: Thu, 12 May 2011 00:20:24 +0000 (-0700) Subject: Make the effects for adding/removing invites less jerky X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=125141a0c6762e25f22464f741914a7404ae6dd8;p=quix0rs-gnu-social.git Make the effects for adding/removing invites less jerky --- diff --git a/plugins/DomainWhitelist/js/whitelistinvite.js b/plugins/DomainWhitelist/js/whitelistinvite.js index 2038a93f33..01e493fa6a 100644 --- a/plugins/DomainWhitelist/js/whitelistinvite.js +++ b/plugins/DomainWhitelist/js/whitelistinvite.js @@ -24,8 +24,9 @@ SN_WHITELIST.resetRow = function(row) { SN_WHITELIST.addRow = function() { var row = $(this).closest("li"); var newRow = row.clone(); + $(row).find('a.add_row').hide(); SN_WHITELIST.resetRow(newRow); - $(newRow).insertAfter(row).show("blind", "slow", function() { + $(newRow).insertAfter(row).show("blind", "fast", function() { SN_WHITELIST.updateButtons(); }); }; @@ -37,7 +38,7 @@ SN_WHITELIST.removeRow = function() { buttons : { "Confirm" : function() { $(this).dialog("close"); - $(that).closest("li").hide("blind", "slow", function() { + $(that).closest("li").hide("blind", "fast", function() { $(this).remove(); SN_WHITELIST.updateButtons(); }); @@ -51,7 +52,7 @@ SN_WHITELIST.removeRow = function() { if ($(this).closest('li').find(':input[name^=username]').val()) { $("#confirm-dialog").dialog("open"); } else { - $(that).closest("li").hide("blind", "slow", function() { + $(that).closest("li").hide("blind", "fast", function() { $(this).remove(); SN_WHITELIST.updateButtons(); });