Sha256: 0d9faa48321796b09db6840734bafa33617f5aaf181d4a9131f6bf48f035ec23

Contents?: true

Size: 495 Bytes

Versions: 1

Compression:

Stored size: 495 Bytes

Contents

/* Guilded Fancy Box To 1.0.0
 * Copyright Fancy Box is licensed under the terms of the MIT License */

g.fancyboxInit = function( options ) 
{	
	if( g.beforeFancyboxInit )
    g.beforeFancyboxInit( options );
	
	var elements = jQuery( options.selector );
	
	if( options.fancybox.type == 'iframe' )
	{
		if( g.fancyboxAddParamsToUrl )
		{
			g.fancyboxAddParamsToUrl( options );
		}
	}
	
	elements.fancybox( options.fancybox );
	
	if( g.afterFancyboxInit )
    g.afterFancyboxInit( options );
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
g_fancybox-1.0.0 lib/generators/templates/javascripts/guilded.fancybox.js