cgross / angular-notify

Minimalistic and extensible notification service for Angular.
http://cgross.github.io/angular-notify/demo/
MIT License
432 stars 99 forks source link

Issue with angular-notify.css #28

Open ghost opened 9 years ago

ghost commented 9 years ago

Within angular-notify.css I see the error: Uncaught SyntaxError: Unexpected token .

cgross commented 9 years ago

Are you putting it in a script tag?

ghost commented 9 years ago

Yes I had the script tag included

faceleg commented 9 years ago

@cgross we think you are including the css file as if it were a script:

<script src="/your-css-file.css"></script>

Instead of a css link:

<link href="/your-css-file.css" rel="stylesheet">