[Build] Relocate operators

...in multi-line expressions, to satisfy JSHint.
This commit is contained in:
Victor Woeltjen
2016-03-04 11:02:57 -08:00
parent 56a91dfbaf
commit c00d77dcb1
8 changed files with 21 additions and 21 deletions

View File

@ -68,8 +68,8 @@ define(
* @returns {boolean} true if domain data exists for the current pan/zoom level
*/
SubPlot.prototype.hasDomainData = function() {
return this.panZoomStack
&& this.panZoomStack.getDimensions()[0] > 0;
return this.panZoomStack &&
this.panZoomStack.getDimensions()[0] > 0;
};
// Utility function for filtering out empty strings.