Skip to content
Snippets Groups Projects
Commit 5d59509a authored by Prasad's avatar Prasad
Browse files

Merge branch 'fix_double_save' into 'master'

fix #125 double save press

See merge request !40
parents 529d7ea0 84f700de
No related branches found
No related tags found
No related merge requests found
......@@ -406,24 +406,13 @@ var app = {
formAlignmentAfterValidation : function(form){
// to avoid hiding of error message under the fixed nav bar
var destination = form.find(".formError:not('.greenPopup'):first").offset().top;
var resizedDestnation = destination-105;
jQuery('html').animate({
scrollTop:resizedDestnation
}, 'slow');
},
/**
* Function to push down the error message size when validation is invoked
* @params : form Element
*/
formAlignmentAfterValidation : function(form){
// to avoid hiding of error message under the fixed nav bar
var destination = form.find(".formError:not('.greenPopup'):first").offset().top;
var resizedDestnation = destination-105;
jQuery('html').animate({
scrollTop:resizedDestnation
}, 'slow');
var formOffset = form.find(".formError:not('.greenPopup'):first").offset();
if(formOffset !== null && typeof(formOffset) === 'object' && formOffset.hasOwnProperty('top')) {
var resizedDestnation = formOffset.top - 105;
$('html, body').animate({
scrollTop:resizedDestnation
}, 'slow');
}
},
convertToDatePickerFormat: function(dateFormat){
......
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