Handle cancel action in league table team name editor

This commit is contained in:
Brian Miyaji
2014-02-19 14:03:22 +11:00
parent daedc38f8e
commit a30bbf09e8

View File

@@ -83,6 +83,10 @@ jQuery(document).ready(function($){
// Name editor cancel
$(".sp-data-table .sp-custom-name .sp-cancel").click(function() {
$val = $(this).closest(".sp-custom-name").siblings(".sp-default-name").find(".sp-default-name-input").html();
$el = $(this).siblings(".sp-custom-name-input");
if($val == $el.attr("placeholder")) $el.val("");
else $el.val($val);
$(this).closest(".sp-custom-name").hide().siblings(".sp-default-name").show();
});