fix(*) remove console.log, fix CJSX class= issue

This commit is contained in:
Ben Gotow 2015-03-16 13:42:38 -07:00
parent 8d0ec33b3c
commit 3369d1476c
2 changed files with 1 additions and 5 deletions

View file

@ -47,9 +47,6 @@ AccountSidebarStore = Reflux.createStore
mainTagIDs = ['inbox', 'drafts', 'sent', 'archive']
mainTags = _.filter tags, (tag) -> _.contains(mainTagIDs, tag.id)
console.log mainTags
userTags = _.filter tags, (tag) -> tag.name != tag.id
# Sort the main tags so they always appear in a standard order
@ -114,7 +111,6 @@ AccountSidebarStore = Reflux.createStore
if change.objectClass == Tag.name
@_populate()
if change.objectClass == Thread.name
console.log "Thread Changed", change
@_populateUnreadCountsDebounced()
if change.objectClass == Message.name
@_populateDraftsCount()

View file

@ -46,7 +46,7 @@ ContainerView = React.createClass
render: ->
<ReactCSSTransitionGroup transitionName="page">
{@_pageComponent()}
<div class="dragRegion" style={"-webkit-app-region": "drag", position: 'absolute', top:0, left:40, right:0, height: 20, zIndex:100}></div>
<div className="dragRegion" style={"WebkitAppRegion": "drag", position: 'absolute', top:0, left:40, right:0, height: 20, zIndex:100}></div>
</ReactCSSTransitionGroup>
_pageComponent: ->