File "fancy-box.js"
Full Path: /home/isoftco/public_html/hrm/public/front_assets/js/plugins/fancy-box.js
File size: 859 bytes
MIME-type: text/plain
Charset: utf-8
var FancyBox = function () {
return {
//Fancybox
initFancybox: function () {
jQuery(".fancybox-button").fancybox({
groupAttr: 'data-rel',
prevEffect: 'none',
nextEffect: 'none',
closeBtn: true,
helpers: {
title: {
type: 'inside'
}
}
});
jQuery(".iframe").fancybox({
maxWidth : 800,
maxHeight : 600,
fitToView : false,
width : '70%',
height : '70%',
autoSize : false,
closeClick : false,
openEffect : 'none',
closeEffect : 'none'
});
},
};
}();