| Current Path : /home/etiennec/www/plugins-dist/mediabox/javascript/ |
| Current File : /home/etiennec/www/plugins-dist/mediabox/javascript/splash.mediabox.js |
(function($){
$(function(){
// poser le cookie au callback de la box chargee
var set_cookie = function() {
$.cookie("modalsplash", box_settings.splash_url, { expires: 7 });
}
$.modalboxsplash = function(href, options) {
$.fn.mediabox($.extend({
href:href,
onComplete:set_cookie,
overlayClose:true
},options));
};
// ouvrir la splash page si pas deja vue
if ($.cookie("modalsplash") != box_settings.splash_url)
$.modalboxsplash(box_settings.splash_url);
});
})(jQuery);