Fixed fade-in affect problem of not loading the affect when added.

This commit is contained in:
2016-05-31 06:36:31 +01:00
parent 7f52decf16
commit 02f9523e1b
10 changed files with 151 additions and 12 deletions

View File

@ -1074,12 +1074,20 @@ class Get
// add_css_view
if ($view->add_css_view == 1)
{
if (!isset($this->customScriptBuilder['css_view'][$name_single]))
{
$this->customScriptBuilder['css_view'][$name_single] = '';
}
$this->customScriptBuilder['css_view'][$name_single] .= base64_decode($view->css_view);
unset($view->css_view);
}
// add_css_views
if ($view->add_css_views == 1)
{
if (!isset($this->customScriptBuilder['css_views'][$name_single]))
{
$this->customScriptBuilder['css_views'][$name_single] = '';
}
$this->customScriptBuilder['css_views'][$name_list] .= base64_decode($view->css_views);
unset($view->css_views);
}