Skip to content
Snippets Groups Projects
Commit e6c3ab56 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

changed cursor to pointer when choosing upload files

parent caa3f9c0
No related branches found
No related tags found
No related merge requests found
...@@ -234,6 +234,7 @@ define([ ...@@ -234,6 +234,7 @@ define([
var filenameCell = row.insertCell() var filenameCell = row.insertCell()
filenameCell.textContent = ".." filenameCell.textContent = ".."
filenameCell.style.width = "80%" filenameCell.style.width = "80%"
filenameCell.style.cursor = "pointer"
filenameCell.onclick = function(){ filenameCell.onclick = function(){
var elems = data.path.split('/') var elems = data.path.split('/')
elems.pop() elems.pop()
...@@ -267,6 +268,7 @@ define([ ...@@ -267,6 +268,7 @@ define([
filenameCell.textContent = file.name filenameCell.textContent = file.name
filenameCell.style.width = "100%" filenameCell.style.width = "100%"
filenameCell.style.cursor = "pointer"
if (file.type === "directory") { if (file.type === "directory") {
iconCell.className = "item_icon folder_icon icon-fixed-width" iconCell.className = "item_icon folder_icon icon-fixed-width"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment