| Current Path : /home/azimutno/www/templates/jdirect_aviato/js/ |
| Current File : /home/azimutno/www/templates/jdirect_aviato/js/theme.js |
/* Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl.html GNU/GPL */
jQuery(function($) {
var config = $('html').data('config') || {};
// Social buttons
$('article[data-permalink]').socialButtons(config);
// Waypoint sticky nav
$('.jd-navbar').waypoint('sticky');
// Demo logo color
var config = $('html').data('config') || {};
$("img[alt=JD-Demo]").each(function() {
var path = this.src.split("/");
if(path[path.length-3]=="demo"){
path[path.length-2] = config.style!="" ? config.style:"default";
path = path.join("/").replace('index.php/','');
var img = new Image(),
$this = this;
img.onload = function() { $this.src = path; };
img.src = path;
}
});
//iOS bugfix
$('.drop-container').on('click', function(){})
});