Merge pull request #721 from naehrstoff/patch-1

Fixed syntax error in Growl example code so it runs on copy and paste.
This commit is contained in:
Scott Davis 2012-02-15 05:01:24 -08:00
commit e437f405b6

View File

@ -383,7 +383,7 @@ to avoid crashing the watcher in the case where the file has been removed.
on_stylesheet_saved do |filename|
Growl.notify {
self.message "#{File.basename(filename)} updated!"
self.message = "#{File.basename(filename)} updated!"
self.icon = '/path/to/success.jpg'
}
end