git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
16 lines
741 B
JavaScript
16 lines
741 B
JavaScript
$(document).ready(function() {
|
|
var options = {target: '#content_container', beforeSubmit: w.showRequest, success: w.showResponse};
|
|
$.blockUI.defaults.css = {};
|
|
var override = $('form').attr('onsubmit');
|
|
if(override == undefined) {
|
|
$('form').ajaxForm(options);
|
|
w.adjustMenu($('form').attr('id'));
|
|
} else {
|
|
var options = {target: '#content_container', beforeSubmit: w.validateRegistration, success: w.adjustMenu($('form').attr('id'))};
|
|
$('form').ajaxForm(options);
|
|
}
|
|
$(document).bind('keydown', 'Ctrl+n',function (evt){ });
|
|
$(document).bind('keydown', 'Ctrl+p',function (evt){ });
|
|
$(document).bind('keydown', 'Ctrl+e',function (evt){ });
|
|
$(document).bind('keydown', 'Ctrl+i',function (evt){ });
|
|
}); |