From 469624c551e71bb8b04f30925442e424ccb0d393 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Thu, 24 Oct 2013 19:40:59 +0300 Subject: [PATCH] Always preload documents grid. Fixes #78 --- js/documents.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/documents.js b/js/documents.js index 87c830d3..636a7ada 100644 --- a/js/documents.js +++ b/js/documents.js @@ -101,9 +101,8 @@ var documentsMain = { fileId = parent.location.hash.replace(/\W*/g, ''); } - if (!fileId){ - documentsMain.show(); - } else { + documentsMain.show(); + if (fileId){ documentsMain.UI.showOverlay(); }