| Name |
##
// Customer
$('#new_customer').dialog(
{
autoOpen: false,
width: 600,
buttons: {
"Ok": function() {
$(this).dialog("close");
},
"Cancel": function() {
$(this).dialog("close");
}
}
}
);
// new_customer Link
$('#dialog2_link').click(function(){
$('#new_customer').dialog('open');
return false;
}
);
//hover states on the static widgets
$('#dialog_link, ul#icons li').hover(
function() {
$(this).addClass('ui-state-hover');
},
function() {
$(this).removeClass('ui-state-hover');
}
);
}
);