Skip to content

Commit

Permalink
Fix regression in restrictions from 05ea52f
Browse files Browse the repository at this point in the history
  • Loading branch information
lantis1008 committed Feb 17, 2018
1 parent 2879bbf commit 38db3d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/gargoyle/files/www/js/restrictions.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ function editRule()
}


editRuleType = editRuleType == "restriction_rule" ? "restriction_edit_rule.sh" : "whitelist_edit_rule.sh";
editRuleWindow = openPopupWindow(editRuleType, "edit", 560, 600);
var editRuleWinType = editRuleType == "restriction_rule" ? "restriction_edit_rule.sh" : "whitelist_edit_rule.sh";
editRuleWindow = openPopupWindow(editRuleWinType, "edit", 560, 600);

saveButton = createInput("button", editRuleWindow.document);
closeButton = createInput("button", editRuleWindow.document);
Expand Down

0 comments on commit 38db3d9

Please sign in to comment.