fix users dialog icons
This commit is contained in:
parent
9224900386
commit
c52640b19c
1 changed files with 2 additions and 2 deletions
|
@ -200,7 +200,7 @@ pandora.ui.usersDialog = function() {
|
||||||
var browser;
|
var browser;
|
||||||
Ox.forEach(browsers, function(b) {
|
Ox.forEach(browsers, function(b) {
|
||||||
if (new RegExp('^' + b).test(value)) {
|
if (new RegExp('^' + b).test(value)) {
|
||||||
browser = value;
|
browser = b;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -231,7 +231,7 @@ pandora.ui.usersDialog = function() {
|
||||||
var system;
|
var system;
|
||||||
Ox.forEach(systems, function(s) {
|
Ox.forEach(systems, function(s) {
|
||||||
if (new RegExp('^' + s).test(value)) {
|
if (new RegExp('^' + s).test(value)) {
|
||||||
system = value;
|
system = s;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue