sense-extension-recipes
Version:
Recipes on working with Qlik Sense Visualization Extensions.
21 lines (16 loc) • 348 B
JavaScript
/*global define*/
define( [
'jquery',
'underscore'
], function ( $, _ ) {
'use strict';
return {
/**
* Add a style to the document's header.
* @param cssContent (String)
*/
addStyleToHeader: function ( cssContent ) {
$( "<style>" ).html( cssContent ).appendTo( "head" );
}
};
} );