Current Path :
/
home
/
develito
/
httpdocs
/
modules
/
mod_maximenuck
/
elements
/
ckbox
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/httpdocs/modules/mod_maximenuck/elements/ckbox/ckbox.js
/** * @copyright Copyright (C) 2015 Cedric KEIFLIN alias ced1870 * http://www.joomlack.fr * @license GNU/GPL * */ CKBox = window.CKBox || {}; (function($) { CKBox.open = function(options) { var defaults = { handler: 'iframe', // load external page or inline code : 'iframe' or 'inline' fullscreen: true, // size: {x: null, y: null}, // size of the box : {x: 800px, y: 500px} url: '', // url or the external content content: '', // html code of the inline content closeText: '×', // set the text for the close button headerHtml: '', // add any code to the header footerHtml: '' // ad any code to the footer } var options = $.extend(defaults, options); var modalclosebutton = options.closeText ? '<a class="ckboxmodal-button" href="#" onclick="CKBox.close(this)">'+options.closeText+'</a>' : ''; var i = $('.ckboxmodal').length+1; ckboxmodal = $('#ckboxmodal'+i); if (ckboxmodal.length) ckboxmodal.remove(); // if (! $('#ckboxmodal').length) { var styles = ''; if (options.size.x) styles += 'width:' + options.size.x+';'; if (options.size.y) styles += 'height:' + options.size.y+';'; if (styles) styles = 'style="' + styles + '"'; var modalhtml = $( '<div id="ckboxmodal'+i+'" data-index="'+i+'" class="ckboxmodal '+(options.fullscreen?'fullscreen':'')+'" '+styles+'>' +'<div class="ckboxmodal-header"></div>' +'<div class="ckboxmodal-body"></div>' +'<div class="ckboxmodal-footer">'+modalclosebutton+'</div>' +'</div>'); $(document.body).append(modalhtml); if (! $('.ckboxmodal-back').length) $(document.body).append('<div class="ckboxmodal-back" onclick="CKBox.close()"/>'); // } ckboxmodal = $('#ckboxmodal'+i); var ckboxmodalbody = ckboxmodal.find('.ckboxmodal-body'); ckboxmodalbody.empty() ckboxmodal.find('.ckboxmodal-header').empty().append(options.headerHtml); ckboxmodal.find('.ckboxmodal-footer').empty().append(modalclosebutton).append(options.footerHtml); if (options.handler == 'inline') { $('#ckboxmodalwrapper'+i).remove(); $('#' + options.content).after('<div id="ckboxmodalwrapper'+i+'" />') ckboxmodalbody.append($('#' + options.content).show()); } else { ckboxmodalbody.append('<iframe class="ckwait" src="'+options.url+'" width="100%" height="auto" />'); } if (!options.fullscreen) ckboxmodal.css('top', $(window).scrollTop()+10); CKBox.resize(); ckboxmodal.show(); $('.ckboxmodal-back').show(); } CKBox.close = function(button) { if (button) { ckboxmodal = $($(button).parents('.ckboxmodal')[0]); } else { ckboxmodal = $('.ckboxmodal'); } var i = ckboxmodal.attr('data-index'); ckboxmodal.hide(); $('.ckboxmodal-back').hide(); if ($('#ckboxmodalwrapper'+i).length) { $('#ckboxmodalwrapper'+i).before(ckboxmodal.find('.ckboxmodal-body').children().first().hide()); } ckboxmodal.remove(); } CKBox.resize = function() { var ckboxmodals = $('.ckboxmodal'); ckboxmodals.each(function(i, ckboxmodal) { ckboxmodal = $(ckboxmodal); if (!ckboxmodal.length) return; var ckboxmodalbody = ckboxmodal.find('.ckboxmodal-body'); var h = ckboxmodal.innerHeight() - ckboxmodal.find('.ckboxmodal-header').outerHeight() - ckboxmodal.find('.ckboxmodal-footer').outerHeight(); ckboxmodalbody.css('height', h); }); } })(jQuery); /* Bind the modal resizing on page resize */ jQuery(window).bind('resize',function(){ CKBox.resize(); });