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:
parent
d8b96a960d
commit
a4fccf800a
|
@ -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'
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@import "_mixins/all"
|
@import "_mixins/all"
|
||||||
|
|
||||||
#flash
|
.flash
|
||||||
color: gray
|
color: gray
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user