32 lines
467 B
JavaScript
32 lines
467 B
JavaScript
$(function() {
|
|
|
|
|
|
|
|
|
|
$( "#dialog-form" ).dialog({
|
|
autoOpen: false,
|
|
height: 600,
|
|
width: 350,
|
|
modal: true,
|
|
buttons: {
|
|
"New Shipment": function() {
|
|
|
|
},
|
|
Cancel: function() {
|
|
$( this ).dialog( "close" );
|
|
}
|
|
},
|
|
close: function() {
|
|
|
|
}
|
|
});
|
|
|
|
$( "#newShipment" ).button().click(function() {
|
|
|
|
$.get('/shipments/add', function(data) {
|
|
$("#dialog-form").html(data);
|
|
$( "#dialog-form" ).dialog( "open" );
|
|
});
|
|
|
|
});
|
|
}); |