Skip to content
Snippets Groups Projects

Fix Google API Error

Merged Kevin Abel requested to merge four into master
+ 6
1
Compare changes
  • Side-by-side
  • Inline
+ 6
1
@@ -182,7 +182,12 @@
@@ -182,7 +182,12 @@
if (track !== false) {
if (track !== false) {
trackQuery(q);
trackQuery(q);
}
}
activeSearch.execute(q);
try {
 
activeSearch.execute(q);
 
} catch (e) {
 
console.log(e);
 
queryComplete({root: activeSearch.root});
 
}
directorySearch.execute(q);
directorySearch.execute(q);
$(wrapperMain).fadeIn();
$(wrapperMain).fadeIn();
},
},
Loading