Skip to content
Snippets Groups Projects
Commit 629790df authored by Peter Rotich's avatar Peter Rotich
Browse files

Simplify print options

parent c4fa3038
No related branches found
No related tags found
No related merge requests found
......@@ -316,26 +316,17 @@ jQuery(function($) {
}
}
});
//Ticket print options
$("#print-options").css({
top : ($(window).height() /5),
left : ($(window).width() / 2 - 300)
});
//Start watching the form for activity.
autoLock.Init();
/*** Ticket Actions **/
//print options
$('a#ticket-print').click(function(e) {
e.preventDefault();
$('#overlay').show();
$('#print-options').show();
$('.dialog#print-options').show();
return false;
});
$('#print-options').delegate('a.close, input.close', 'click', function(e) {
e.preventDefault();
$('#print-options').hide()
$('#overlay').hide();
});
//Start watching the form for activity.
autoLock.Init();
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment