Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trello in project #381

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added automatic pull of teemlp docker image
  • Loading branch information
Kumar Shubham committed Jun 23, 2017
commit 997258f2b85d98bdc1207792d0f0296eb0189308
6 changes: 3 additions & 3 deletions src/js/directives/pad.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 173,14 @@ angular.module('Teem')
.catch((err) => {
console.log(err);
});
let clientRect = range.node.nextSibling ?
range.node.nextSibling.getBoundingClientRect() :
range.node.parentElement.getBoundingClientRect();
div.innerHTML = inHTML;
div.style.width = '345px';
div.style.height = '300px';
div.style.position = 'absolute';
div.style.border = '1px solid #F0F0F0';
let clientRect = range.node.nextSibling ?
range.node.nextSibling.getBoundingClientRect() :
range.node.parentElement.getBoundingClientRect();
div.style.top = clientRect.top 35 'px';
div.style.left = clientRect.left 'px';
div.style.zIndex = 3;
Expand Down
5 changes: 5 additions & 0 deletions swellrt/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 15,11 @@ services:
mongo:
image: mongo:latest
restart: always
teem-link-preview:
image: krshubham/teem-link-preview:latest
restart: always
ports:
- "0.0.0.0:9090:9090"