17 lines
261 B
JavaScript
17 lines
261 B
JavaScript
/**
|
|
* Handler for Assets loader
|
|
*/
|
|
function CherryAssetsLoader( tags, context ) {
|
|
|
|
'use strict';
|
|
|
|
tags.forEach( function( item ) {
|
|
if ( 'body' === context ) {
|
|
jQuery( 'body' ).append( item );
|
|
} else {
|
|
jQuery( 'head' ).append( item );
|
|
}
|
|
} );
|
|
|
|
}
|