Skip to content
Snippets Groups Projects
Commit 335e9a04 authored by Prasad's avatar Prasad
Browse files

Fixes #464: Addressed unreachable code error in our resources

parent d27e0f12
No related branches found
No related tags found
No related merge requests found
......@@ -316,9 +316,8 @@ Vtiger_BasicSearch_Js("Vtiger_AdvanceSearch_Js",{
var thisInstance = this;
this.formValidationDeferred = jQuery.Deferred();
thisInstance.formValidationDeferred.resolve();
return this.formValidationDeferred.promise();
var controlForm = this.getFilterForm();
var validationDone = function(form, status){
if(status) {
thisInstance.formValidationDeferred.resolve();
......@@ -445,4 +444,4 @@ Vtiger_BasicSearch_Js("Vtiger_AdvanceSearch_Js",{
//To set the search module with the currently selected values.
this.setSearchModule(jQuery('#searchModuleList').val());
}
})
\ No newline at end of file
})
......@@ -332,10 +332,10 @@ jQuery.Class("Vtiger_Popup_Js",{
var aDeferred = jQuery.Deferred();
var completeParams = this.getCompleteParams();
completeParams['page'] = 1;
return this.getPageRecords(completeParams).then(
this.getPageRecords(completeParams).then(
function(data){
aDeferred.resolve(data);
});
});
return aDeferred.promise();
},
......@@ -489,7 +489,7 @@ jQuery.Class("Vtiger_Popup_Js",{
}
var completeParams = this.getCompleteParams();
jQuery.extend(completeParams,sortingParams);
return this.getPageRecords(completeParams).then(
this.getPageRecords(completeParams).then(
function(data){
aDeferred.resolve(data);
},
......
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