webconfig: should know about italics, reverse, dim.

This commit is contained in:
Aaron Gyes
2018-12-05 01:05:33 -08:00
parent 03bca5f7dd
commit 04795eb8ea
2 changed files with 21 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ controllers.controller("colorsController", function($scope, $http) {
} else {
selected = $scope.selectedColorScheme[name];
}
var postData = "what=" + name + "&color=" + selected + "&background_color=&bold=&underline=";
var postData = "what=" + name + "&color=" + selected + "&background_color=&bold=&underline=&dim=&reverse=&italics=";
$http.post("set_color/", postData, { headers: {'Content-Type': 'application/x-www-form-urlencoded'} }).success(function(data, status, headers, config) {
if (status == 200) {
remaining -= 1;