diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-17 00:13:39 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-17 00:13:39 -0400 |
commit | 0cf0bfee1473f15d3df0813b92ede98b29ee53a4 (patch) | |
tree | ff4b293c7fbdede6886c00a2c01b3453ebe3241b | |
parent | dcbd110cd73d13a543e8c0013ca98340968f6d9f (diff) |
fixed url popout.
-rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index b92fd77c2..ba9e8c29f 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -215,7 +215,7 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp stack.header.controlsContainer.find('.lm_popout') //get the close icon .off('click') //unbind the current click handler .click(action(function () { - var url = "localhost:1050/doc/" + stack.contentItems[0].tab.contentItem.config.props.documentId; + var url = "http://localhost:1050/doc/" + stack.contentItems[0].tab.contentItem.config.props.documentId; let win = window.open(url, stack.contentItems[0].tab.title, "width=300,height=400"); })); } |