[SPIP] +spip v3.0.17
[lhc/web/clavette_www.git] / www / plugins-dist / mediabox / javascript / splash.mediabox.js
1 (function($){
2 $(function(){
3 // poser le cookie au callback de la box chargee
4 var set_cookie = function() {
5 $.cookie("modalsplash", box_settings.splash_url, { expires: 7 });
6 }
7
8 $.modalboxsplash = function(href, options) {
9 $.fn.mediabox($.extend({
10 href:href,
11 onComplete:set_cookie,
12 overlayClose:true
13 },options));
14 };
15 // ouvrir la splash page si pas deja vue
16 if ($.cookie("modalsplash") != box_settings.splash_url)
17 $.modalboxsplash(box_settings.splash_url);
18
19 });
20 })(jQuery);