From e6c3ab5634cbf20adc3a85ceb911c6791340147a Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Fri, 20 Sep 2019 09:57:34 +0200 Subject: [PATCH] changed cursor to pointer when choosing upload files --- jupyter-openbis-extension/static/uploadDialog.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jupyter-openbis-extension/static/uploadDialog.js b/jupyter-openbis-extension/static/uploadDialog.js index 5cbfae4..16e8666 100644 --- a/jupyter-openbis-extension/static/uploadDialog.js +++ b/jupyter-openbis-extension/static/uploadDialog.js @@ -234,6 +234,7 @@ define([ var filenameCell = row.insertCell() filenameCell.textContent = ".." filenameCell.style.width = "80%" + filenameCell.style.cursor = "pointer" filenameCell.onclick = function(){ var elems = data.path.split('/') elems.pop() @@ -267,6 +268,7 @@ define([ filenameCell.textContent = file.name filenameCell.style.width = "100%" + filenameCell.style.cursor = "pointer" if (file.type === "directory") { iconCell.className = "item_icon folder_icon icon-fixed-width" -- GitLab