1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

Issue #3104 - Library CSS order fix.

This commit is contained in:
Cameron
2018-05-11 17:39:26 -07:00
parent bf9cf05b0e
commit 6b925a6f76
4 changed files with 33 additions and 4 deletions

View File

@@ -300,7 +300,7 @@ class core_library
),
'css' => array(
'dist/css/bootstrap.min.css' => array(
'zone' => 2,
'zone' => 1,
),
),
),
@@ -1724,7 +1724,8 @@ class e_library_manager
}
elseif($type == 'css')
{
e107::css($options['type'], $data, null);
e107::getJs()->libraryCSS($data); // load before others.
// e107::css($options['type'], $data, null);
}
$count++;
}