Skip to content

Commit

Permalink
You can now select file and directory without any trouble on Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheun Marec committed Nov 24, 2015
1 parent a23a112 commit 50ac4f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/view/directory.opa
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ module DirectoryView {
/** Handles associated with table directoru lines. */
function handles(id, name, parent, path) {
[ { name: {mousedown}, value: {expr: @public_env(select(id, name, parent, _))} } ]
[ { name: {click}, value: {expr: @public_env(select(id, name, parent, _))} } ]
// { name: {dblclick},
// value: {expr: function(_e) { Content.update(URN.make({files: ""}, path), false) }} } ]
}
Expand Down
2 changes: 1 addition & 1 deletion src/view/file.opa
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ module FileView {
}
function handles(id, name, access, security, parent, clabels, file) {
[ {name:{mousedown}, value: {expr: select(id, name, access, security, parent, clabels, file, _)}} ]
[ {name:{click}, value: {expr: select(id, name, access, security, parent, clabels, file, _)}} ]
}
/**
Expand Down

0 comments on commit 50ac4f0

Please sign in to comment.