Fix single/twin folders being center-aligned instead of left-aligned

This commit is contained in:
Mahdi Dibaiee
2015-09-15 19:45:30 +04:30
parent 596799b6f0
commit 43239b4a4c
6 changed files with 14 additions and 21 deletions

View File

@ -13,7 +13,7 @@ export default {
let rect = React.findDOMNode(this.refs.container).getBoundingClientRect();
let {x, y, width, height} = rect;
let left = x + width / 2 - MENU_WIDTH / 2,
let left = window.innerWidth / 2 - MENU_WIDTH / 2,
top = y + height / 2 + MENU_TOP_SPACE;
let dialogHeight = document.getElementById('fileMenu').offsetHeight;