| Index: options.js | 
| =================================================================== | 
| --- a/options.js | 
| +++ b/options.js | 
| @@ -139,7 +139,7 @@ | 
| // Display jQuery UI elements | 
| $("#tabs").tabs(); | 
| - $("button").button(); | 
| + $("button:not(.subscriptionRemoveButton)").button(); | 
| $(".refreshButton").button("option", "icons", {primary: "ui-icon-refresh"}); | 
| $(".addButton").button("option", "icons", {primary: "ui-icon-plus"}); | 
| $(".removeButton").button("option", "icons", {primary: "ui-icon-minus"}); | 
| @@ -327,7 +327,7 @@ | 
| return; | 
| } | 
| - $("#tabs").tabs("select", 0); | 
| + $("#tabs").tabs("option", "active", 0); | 
| $("#addSubscriptionContainer").show(); | 
| $("#addSubscriptionButton").hide(); | 
| $("#subscriptionSelector").focus(); | 
| @@ -728,7 +728,7 @@ | 
| previous[0].classList.remove("focused"); | 
| let index = $("[href='#" + tab.id + "']").parent().index(); | 
| - $("#tabs").tabs("select", index); | 
| + $("#tabs").tabs("option", "active", index); | 
| found.classList.add("focused"); | 
| } | 
| break; |