diff --git a/share/tools/web_config/fishconfig.css b/share/tools/web_config/fishconfig.css
index 1660cf43b..195bf52b4 100644
--- a/share/tools/web_config/fishconfig.css
+++ b/share/tools/web_config/fishconfig.css
@@ -293,19 +293,6 @@ body {
border-bottom: #444 dotted 1px;
}
-.abbreviation_actions {
- width: 8em;
- text-align: right;
- border-bottom: #444 dotted 1px;
-}
-
-.abbreviation_input {
- height: 1.5em;
- font: inherit;
- padding: 3px;
- margin: 0;
-}
-
/* The CSS we apply when a table row is filtered */
.data_table_row_filtered {
display: none;
diff --git a/share/tools/web_config/index.html b/share/tools/web_config/index.html
index 8d7aa3d72..64169c83b 100644
--- a/share/tools/web_config/index.html
+++ b/share/tools/web_config/index.html
@@ -27,7 +27,6 @@
diff --git a/share/tools/web_config/js/app.js b/share/tools/web_config/js/app.js
index b602a8cd0..b34822532 100644
--- a/share/tools/web_config/js/app.js
+++ b/share/tools/web_config/js/app.js
@@ -34,10 +34,6 @@ fishconfig.config(
controller: "bindingsController",
templateUrl: "partials/bindings.html"
})
- .when("/abbreviations", {
- controller: "abbreviationsController",
- templateUrl: "partials/abbreviations.html"
- })
.otherwise({
redirectTo: "/colors"
})
diff --git a/share/tools/web_config/js/controllers.js b/share/tools/web_config/js/controllers.js
index 958649cdf..f363f6f6d 100644
--- a/share/tools/web_config/js/controllers.js
+++ b/share/tools/web_config/js/controllers.js
@@ -395,49 +395,3 @@ controllers.controller("bindingsController", function($scope, $http) {
$scope.fetchBindings();
});
-
-controllers.controller("abbreviationsController", function($scope, $http) {
- $scope.abbreviations = [];
- $scope.addBlank = function() {
- // Add blank entry if it is missing
- var hasBlank = {hasBlank: false}
- angular.forEach($scope.abbreviations, function(value, key) {
- if (value.phrase === "" && value.word === "") {
- this.hasBlank = true;
- }
- }, hasBlank);
- if (!$scope.abbreviations) $scope.abbreviations = [];
- if (! hasBlank.hasBlank) {
- $scope.abbreviations.push({phrase: "", word: "", editable: true})
- }
- }
- $scope.fetchAbbreviations = function() {
- $http.get("abbreviations/").then(function(arg) {
- $scope.abbreviations = arg.data;
- $scope.addBlank();
- })};
-
- $scope.editAbbreviation = function(abbreviation) {
- abbreviation.editable = true;
- }
-
- $scope.saveAbbreviation = function(abbreviation) {
- if (abbreviation.word && abbreviation.phrase) {
- $http.post("save_abbreviation/", abbreviation).then(function(arg) {
- abbreviation.editable = false;
- $scope.addBlank();
- });
- }
- };
-
- $scope.removeAbbreviation = function(abbreviation) {
- if (abbreviation.word) {
- $http.post("remove_abbreviation/", abbreviation).then(function(arg) {
- $scope.abbreviations.splice($scope.abbreviations.indexOf(abbreviation), 1);
- $scope.addBlank();
- });
- }
- };
-
- $scope.fetchAbbreviations();
-});
diff --git a/share/tools/web_config/js/filters.js b/share/tools/web_config/js/filters.js
index 073869550..5159faa28 100644
--- a/share/tools/web_config/js/filters.js
+++ b/share/tools/web_config/js/filters.js
@@ -41,20 +41,3 @@ filters.filter("filterBinding", function() {
return result;
}
});
-
-filters.filter("filterAbbreviations", function() {
- return function(abbreviations, query) {
- var result = []
- if (abbreviations == undefined) return result;
- if (query == null) { return abbreviations};
-
- for(var i=0; i
-
-
-
-