mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 05:38:12 +00:00
[API] Update StyleSheetLoaderSpec
...to reflect asset path details
This commit is contained in:
@ -37,6 +37,8 @@ define(
|
||||
* @param {object[]} stylesheets stylesheet extension definitions
|
||||
* @param $document Angular's jqLite-wrapped document element
|
||||
* @param {string} activeTheme the theme in use
|
||||
* @param {string} [assetPath] the directory relative to which
|
||||
* stylesheets will be found
|
||||
*/
|
||||
function StyleSheetLoader(stylesheets, $document, activeTheme, assetPath) {
|
||||
var head = $document.find('head'),
|
||||
@ -69,6 +71,8 @@ define(
|
||||
stylesheet.theme === activeTheme;
|
||||
}
|
||||
|
||||
assetPath = assetPath || ".";
|
||||
|
||||
// Add all stylesheets from extensions
|
||||
stylesheets.filter(matchesTheme).forEach(addStyleSheet);
|
||||
}
|
||||
|
Reference in New Issue
Block a user