Don't use id for flash view

When logging out and then logging back in, there is sometimes an error
when registering flash view, which says that it can't register 2 views
with the same id. We don't need to use id here, so I just changed id to
class
This commit is contained in:
Piotr Sarnacki 2013-05-16 13:33:04 +02:00
parent d8b96a960d
commit a4fccf800a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
@Travis.reopen @Travis.reopen
FlashView: Travis.View.extend FlashView: Travis.View.extend
elementId: 'flash' classNames: ['flash']
tagName: 'ul' tagName: 'ul'
templateName: 'layouts/flash' templateName: 'layouts/flash'

View File

@ -1,6 +1,6 @@
@import "_mixins/all" @import "_mixins/all"
#flash .flash
color: gray color: gray
font-weight: bold font-weight: bold