Skip to content

Commit

Permalink
Fix linting warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 authored Oct 31, 2017
1 parent 791bf80 commit f523661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TPT_Fixer_Upper.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function replacePageHeader() {
currentGroupName = jQuery(".Pageheader a").eq(1).text();
currentGroupID = tptenhance.groups.currentGroupId();
} else {
header = jQuery(".Pageheader a").eq(2)
header = jQuery(".Pageheader a").eq(2);
currentGroupName = header.text();
currentGroupID = header.attr("href").split("Group=")[1].split("&")[0];
}
Expand Down Expand Up @@ -203,7 +203,7 @@ var TPTFixerUpper = function() {
jQuery(".MemberColumn").css({"width": "417.5px"});
jQuery(".MemberName").css({"width": "120px"});
var btns = jQuery(".btn-mini.btn-danger");
btns.text("").append('<i class="icon icon-white icon-remove"></i>');
btns.text("").append("<i class=\"icon icon-white icon-remove\"></i>");
btns.each(function() {
var that = jQuery(this);
var user = that.parent().parent().find(".MemberName").text();
Expand Down

0 comments on commit f523661

Please sign in to comment.