Installed
Just - I've reworked some JS / IF conditions like:
Quote:
<if condition="!empty($autocompletion_js)">
function mgc_cb_evo_autocomplete()
{
$("#mgc_cb_evo_input").autocomplete([$autocompletion_js]);
}
$(document).ready(function(){
mgc_cb_evo_autocomplete();
}
);</if>
|
Before the "IF" condition was inside the function and so created an empty JS function used for nothing.
Also about the Collapse / Show mode:
Quote:
<span id="mgc_cb_evo_title_opened"
<if condition="$vbcollapse[collapseobj_mgc_cb_evo] == ''">
<else />
style="display: none;"
</if>
>
....
<span id="mgc_cb_evo_title_closed"
<if condition="$vbcollapse[collapseobj_mgc_cb_evo] == ''">
style="display: none;"
</if>
>
|
Got a CSS warning - specially about the first one - because the IF condition produced an empty:
This fixes this