#{msg.cs_title}

#{msg.cs_heading}

#{msg.cs_addedCategorySets}

#{categorySet.name}




#{msg.cs_addCategorySets}

function focusCategory(category_set_class) { var category_set = $(category_set_class); if (category_set.length) { setTimeout(function () { category_set.find(".category-text").last().focus(); }, 200); } } function captureEnter(event) { if (event.keyCode !== 13) return true; var focused = $(":focus"); if (focused.hasClass("category-text")) { focused.blur(); var button = focused.parent().next("button"); if (button.length) button.click(); } else if (focused.hasClass("category-set-list-input")) { var button = focused.next("button"); if (button.length) button.click(); } return false; }