From 81f7b053eb3907f145231f6eb452f40231270869 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 14 Oct 2017 14:00:57 +0300 Subject: [PATCH] minor fix in introspection... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/ui-widgets.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ui (gen4)/features/ui-widgets.js b/ui (gen4)/features/ui-widgets.js index 4124f76e..aa937731 100755 --- a/ui (gen4)/features/ui-widgets.js +++ b/ui (gen4)/features/ui-widgets.js @@ -1043,6 +1043,12 @@ var UIIntrospectionActions = actions.Actions({ return } + var exclusive = feature.exclusive + exclusive = exclusive + && (exclusive instanceof Array ? + exclusive + : [exclusive]) + res.append($('
') .prop('tabindex', true) .append($('

') @@ -1061,7 +1067,7 @@ var UIIntrospectionActions = actions.Actions({ // list exclusive features... .append($('
') .html('Exclusive tag: ' - + (feature.exclusive || ['-']) + + (exclusive || ['-']) .map(function(tag){ if(tag == '-'){ return tag