Skip to content

Commit

Permalink
Merge pull request #11 from mervick/patch-1
Browse files Browse the repository at this point in the history
Change the location of the Sass parser
  • Loading branch information
nizsheanez committed Feb 3, 2015
2 parents bfafc23 + f28ea18 commit 170174c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sass.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Sass extends Parser
/**
* @var string to the class pointing to where sass parser is located.
*/
public $sassParserClass = '@app/extensions/assetparser/vendors/phamlp/sass/SassParser';
public $sassParserClass = '\SassParser';

/**
* @var string to the sass parser cache
Expand All @@ -32,4 +32,4 @@ public function parse($src, $dst, $options)
$parser = Yii::createObject($this->sassParserClass, $options);
file_put_contents($dst, $parser->toCss($src));
}
}
}

0 comments on commit 170174c

Please sign in to comment.