Your IP : 216.73.216.240
/**
* @package Tech Fry Library
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
Joomla = window.Joomla || {};
(function(Joomla, document) {
'use strict';
function initTemplate(event) {
var target = event && event.target ? event.target : document;
}
document.addEventListener('DOMContentLoaded', function (event) {
initTemplate(event);
[].slice.call(document.head.querySelectorAll('link[rel="lazy-stylesheet"]'))
.forEach(function($link){
$link.rel = "stylesheet";
});
});
document.addEventListener('joomla:updated', initTemplate);
})(Joomla, document);