Skip to content

Commit

Permalink
Uncomment some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
morganecf committed May 9, 2020
1 parent 2a58001 commit ba7d2a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions app/client/jsx/Room.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,7 @@ class Room extends Component {
<Navigation
directions={room.directions}
onClick={this.onSwitchRoom.bind(this)}
// showMapButton={isMapUnlocked}
showMapButton={true}
showMapButton={isMapUnlocked}
showMapTooltip={showMapTooltip}
handleOpenMap={this.handleOpenMap.bind(this)}></Navigation>
<Beforeunload onBeforeunload={this.handleBeforeUnload.bind(this)} />
Expand Down
2 changes: 1 addition & 1 deletion app/client/styles/themes/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ body {
}
.ReactModal__Overlay {
background: lighten($background-color, 20%) !important;
}
}
3 changes: 1 addition & 2 deletions app/jitsi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
staticdir = os.path.join(basedir, 'client/js')

db = SQLAlchemy()
# socketio = SocketIO(async_mode="eventlet")
socketio = SocketIO()
socketio = SocketIO(async_mode="eventlet")

# Register socket events with SocketIO instance
from . import events
Expand Down

0 comments on commit ba7d2a5

Please sign in to comment.