Demos

Some live demos of the product, please note that some operations are not permitted in demo mode.

Images

Browse images only

Example code
moxman.browse({
	view: 'thumbs',
	fields: 'url',
	extensions:'jpg,gif,png'
});

Edit image

Edit image
Example code
moxman.edit({
	path: '/files/teddybear.jpg',
	onsave: function(result) {
		alert(result.file.url);
	}
});

View image

View

Example code
moxman.view({
	path: '/testfiles/camera.jpg'
});