Commit 4532912e by ara818

Fix YUI arg passing, had CSS/JS flipped

parent 48588c9d
......@@ -34,7 +34,7 @@ class YUICompressorFilter(FilterBase):
return filtered_css
def filter_js(self, js):
return self.filter_common(js, 'js', settings.COMPRESS_YUI_CSS_ARGUMENTS)
return self.filter_common(js, 'js', settings.COMPRESS_YUI_JS_ARGUMENTS)
def filter_css(self, css):
return self.filter_common(css, 'css', settings.COMPRESS_YUI_JS_ARGUMENTS)
\ No newline at end of file
return self.filter_common(css, 'css', settings.COMPRESS_YUI_CSS_ARGUMENTS)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment