Share files in a chat-style interface. Uploaded files appear as message bubbles
in the conversation timeline alongside text messages.
AjaxUploader.create(el, {
uploadUrl: '/ajaxupload.axd/upload',
autoUpload: true,
onComplete: function (file) {
addChatBubble('File: ' + file.name);
}
});