Skip to content

Commit

Permalink
Merge pull request jupyterlab#34 from ian-r-rose/jlab_0.31rc2
Browse files Browse the repository at this point in the history
Update dependencies for beta release.
  • Loading branch information
mpacer authored Jan 10, 2018
2 parents 21dde8b + 649eb9f commit e148036
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.14.0",
"@jupyterlab/apputils": "^0.14.1",
"@jupyterlab/coreutils": "^1.0.1",
"@jupyterlab/docmanager": "^0.14.0",
"@jupyterlab/docregistry": "^0.14.0",
"@jupyterlab/fileeditor": "^0.14.0",
"@jupyterlab/services": "^1.0.1",
"@jupyterlab/application": "^0.15.0",
"@jupyterlab/apputils": "^0.15.0",
"@jupyterlab/coreutils": "^1.0.2",
"@jupyterlab/docmanager": "^0.15.0",
"@jupyterlab/docregistry": "^0.15.0",
"@jupyterlab/fileeditor": "^0.15.0",
"@jupyterlab/services": "^1.0.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ function activateLatexPlugin(app: JupyterLab, manager: IDocumentManager, editorT
const findOpenOrRevealPDF = () => {
let pdfWidget = manager.findWidget(pdfFilePath);
if (!pdfWidget) {
pdfWidget = manager.openOrReveal(pdfFilePath, 'PDFJS');
pdfWidget = manager.openOrReveal(pdfFilePath, 'PDFJS',undefined,
{'mode': 'split-right'});
}
pdfContext = manager.contextForWidget(pdfWidget);
pdfContext.disposed.connect(cleanupPreviews);
Expand Down

0 comments on commit e148036

Please sign in to comment.