Created
November 3, 2011 02:01
-
-
Save chriseppstein/1335580 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add this to your compass config. | |
module Sass::Script::Functions | |
def syntax_error(message) | |
raise Sass::SyntaxError, message.value | |
end | |
declare :syntax_error, [:message] | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@debug syntax-error("Whatcha talkin' about Willis!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice!