fix categories in admin sometimes change color after search

This commit is contained in:
Ralf Becker 2014-12-15 17:46:21 +00:00
parent 8239ae9b2d
commit cc71329be0

View File

@ -527,7 +527,22 @@ var et2_nextmatch_rowProvider = ClassWithAttributes.extend(
if(!categories) categories = _mgrs["sel_options"].getEntry("${row}["+category_location + "]");
// Cache
if(categories) this.categories = categories;
if(categories)
{
if (!jQuery.isArray(categories))
{
this.categories = categories;
}
else
{
this.categories = {};
for(var i=0; i < categories.length; ++i)
{
var cat = categories[i];
this.categories[cat.value] = cat;
}
}
}
}
for(var i = 0; i < cats.length && this.categories; i++)
{