Skip to content

Commit

Permalink
itemdata doesn't remove session name anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
fredeerock committed Jul 21, 2019
1 parent 2847f21 commit 143b7df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion diamondsCluster/public/js/theater.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ socket.on('itemback', function (data) {

console.log(userbars);

document.getElementsByClassName('sw')[0].style.display = "none";
// document.getElementsByClassName('sw')[0].style.display = "none";

// setTimeout(function() {alert('hello');},1250);
// console.log("readsd");
Expand Down
11 changes: 10 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,26 @@ services:
image: redis:5
expose:
- "6379"
networks:
comm:
aliases:
- redis_db

node:
image: node:12
user: "node"
working_dir: /home/node/app
environment:
- NODE_ENV=production
- REDISIP=diamonds_elo_redis_1
- REDISIP=redis_db
- PORT=8080
volumes:
- ./diamondsCluster:/home/node/app
ports:
- "8001:8080"
command: npm start
networks:
- comm

networks:
comm:

0 comments on commit 143b7df

Please sign in to comment.