Skip to content

Commit

Permalink
fix jshint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsanjose committed Oct 22, 2014
1 parent 38226c4 commit 5267e45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/SASSDomain.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function render(file, includePaths, imagePaths, outputStyle, sourceComments, sou

// Ensure relative paths so that absolute paths don't sneak into generated
// CSS and source maps
includePaths = _toRelativePaths(file, includePaths),
includePaths = _toRelativePaths(file, includePaths);
imagePaths = _toRelativePaths(file, imagePaths);

// Paths are relative to current working directory (file parent folder)
Expand Down Expand Up @@ -179,7 +179,7 @@ function preview(file, inMemoryFiles, includePaths, imagePaths, outputStyle, sou

// Ensure relative paths so that absolute paths don't sneak into generated
// CSS and source maps
includePaths = _toRelativePaths(tmpFile, includePaths),
includePaths = _toRelativePaths(tmpFile, includePaths);
imagePaths = _toRelativePaths(tmpFile, imagePaths);

// Add original file dir as includePath to handle "../" relative imports
Expand Down

0 comments on commit 5267e45

Please sign in to comment.