diff --git a/WebContent/html/webpages/administration/adminDeviceSettings.jsp b/WebContent/html/webpages/administration/adminDeviceSettings.jsp
index c2a24c8..b6a908f 100644
--- a/WebContent/html/webpages/administration/adminDeviceSettings.jsp
+++ b/WebContent/html/webpages/administration/adminDeviceSettings.jsp
@@ -359,7 +359,7 @@ function fuzzyFilter(deviceArray)
////// First pass: filter by device name
var options = {
- pre: "",
+ pre: "",
post: '',
extract: function(arg) {return arg.name;}
}
@@ -370,6 +370,7 @@ function fuzzyFilter(deviceArray)
}
////// Second pass: filter by MAC address
options.extract = function(arg) {return arg.mac;};
+ options.pre = "span style='color: orange; font-size: 115%'>"
var macFilterResults = fuzzy.filter(searchText, deviceArray, options);
// replace releveant field with bolded string
for (var i = macFilterResults.length - 1; i >= 0; i--) {
@@ -377,6 +378,7 @@ function fuzzyFilter(deviceArray)
}
////// Third pass: filter by Manufacture
options.extract = function(arg) {return arg.manufacturer;};
+ options.pre = "span style='color: gold; font-size: 115%'>"
var manufacturerFilterResults = fuzzy.filter(searchText, deviceArray, options);
// replace releveant field with bolded string
for (var i = manufacturerFilterResults.length - 1; i >= 0; i--) {
@@ -384,6 +386,7 @@ function fuzzyFilter(deviceArray)
}
////// Fourth pass: filter by Hardware
options.extract = function(arg) {return arg.hardware;};
+ options.pre = "span style='color: green; font-size: 115%'>"
var hardwareFilterResults = fuzzy.filter(searchText, deviceArray, options);
// replace releveant field with bolded string
for (var i = hardwareFilterResults.length - 1; i >= 0; i--) {
@@ -391,6 +394,7 @@ function fuzzyFilter(deviceArray)
}
////// Fifth pass: filter by Model
options.extract = function(arg) {return arg.model;};
+ options.pre = "span style='color: blue; font-size: 115%'>"
var modelFilterResults = fuzzy.filter(searchText, deviceArray, options);
// replace releveant field with bolded string
for (var i = modelFilterResults.length - 1; i >= 0; i--) {
@@ -398,6 +402,7 @@ function fuzzyFilter(deviceArray)
}
////// Sixth pass: filter by Serial
options.extract = function(arg) {return arg.serial;};
+ options.pre = "span style='color: violet; font-size: 115%'>"
var serialFilterResults = fuzzy.filter(searchText, deviceArray, options);
// replace releveant field with bolded string
for (var i = serialFilterResults.length - 1; i >= 0; i--) {