You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

overlay and expose 1.0.0 2009-02-15 14:17:50.0

jquery.overlay 1.0.0

jquery.overlay has undergone a quite massive update. Rewritten source code, documentation and a new demo section. Here are the new features.

For the most part your old installations should work out of the box. However if you have used callback functions such as onLoad then this- variable is no longer a pointer to the growing background image. Instead it is a pointer to the JavaScript API.

jquery.expose 1.0.0

New version of jquery.expose has the same story. It has undergone a thorough update. Rewritten source code, documentation and a new demo section. Here are the new features.

Exposing is initialized the same way as before and your previous installation may work without problems. However if you have closed your expose programmatically with $.unexpose() function this won't work anymore. This function is replaced with new $.expose.close() function. All expose related functions now share the same namespace: $.expose.

Overlay with Expose: Migrating to new version

You may have setup overlaying on your pages with expose feature. In previous versions this happened following way.


// old way
$("button[rel]").overlay({

	// perform exposing 
	onBeforeLoad: function() {
		this.expose();	
	},				

	// close exposing
	onClose: function(content) {
		$.unexpose();
	}
});

In new version things are a little different and here is the identical setup with versions 1.0.0:


// new way way
$("button[rel]").overlay({

	// perform exposing. this- varialbe is a pointer to overlay API
	onBeforeLoad: function() {
		this.getBackgroundImage().expose();	
	},				

	// close exposing
	onClose: function(content) {
	
		// use expose API to close exposing
		$.expose.close();
	}
});

You can see one example setup from this demo about overlayed videos with expose.

Flowplayer news

Of course we have done some Flowplayer coding as well. Here is a summary of new stuff.

That's for now. Expect to see more goodies to be published on this blog.

Comments