Before setting opacity of newly-active facets and records widgets to
100%, stop any existing animation, namely the fadeTo that is making
them transparent. I think a race condition was resulting in them
sometimes remaining invisible after a new search was triggered.
});
team.queue("facets").subscribe(function(data) {
+ that.node.stop();
that.node.css('opacity', 1);
that.node.addClass("active");
});
var m_dataToRedraw = null;
function refreshRecordData() {
+ that.node.stop();
that.node.css('opacity', 1);
if (m_dataToRedraw) {