Monthly Archives: July 2012

success dialog message w/ xajax that fades away

Xajax:    $objResponse->create(“content”, “div”, “done_message”); $html = “ Save Complete”; $objResponse->assign(‘done_message’, ‘innerHTML’, “$html”); $objResponse->script(” $(‘#done_message’).dialog({ width: 300, height: 130, modal:true, resizable: false, draggable: false, dialogClass: ‘done_message’ }); “); $objResponse->script(” $(‘#done_message’).closest(‘.ui-dialog’).find(‘.ui-dialog-titlebar’).hide();”); $objResponse->script( “setTimeout(function(){ $(‘#done_message’).fadeOut(300, function(){ $(this).remove();});}, 500);  “);     CSS: … Continue reading

Posted in Uncategorized | Leave a comment

Installing handbrake on ubuntu 12.04

This is what I did to install handbrake on ubuntu 12.04 sudo apt-add-repository ppa:stebbins/handbrake-snapshots sudo apt-get update sudo apt-get install handbrake-gtk    

Posted in Uncategorized | Leave a comment