mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
* Filemanager - make files and their paths clickable
This commit is contained in:
parent
a75272b1bc
commit
fbea34819a
@ -75,7 +75,7 @@ var et2_vfs = (function(){ "use strict"; return et2_valueWidget.extend([et2_IDet
|
||||
// calculate path as parent of name, which can contain slashes
|
||||
// eg. _value.path=/home/ralf/sub/file, _value.name=sub/file --> path=/home/ralf
|
||||
// --> generate clickable fields for sub/ + file
|
||||
var sub_path = path.substr(0, _value.path.length-_value.name.length-1);
|
||||
var sub_path = path.substring(0, _value.path.length-_value.name.length-1);
|
||||
if(_value.path.indexOf(_value.name) >= 0 && sub_path[sub_path.length-1] === '/')
|
||||
{
|
||||
path = sub_path;
|
||||
@ -90,7 +90,7 @@ var et2_vfs = (function(){ "use strict"; return et2_valueWidget.extend([et2_IDet
|
||||
path = sub_path;
|
||||
}
|
||||
var path_offset = 0;
|
||||
var path_parts = [_value.name];
|
||||
var path_parts = _value.name.split('/');
|
||||
}
|
||||
|
||||
var text;
|
||||
|
@ -31,7 +31,7 @@
|
||||
</row>
|
||||
<row class="row $row_cont[class]">
|
||||
<vfs-mime align="center" id="$row"/>
|
||||
<vfs-name id="${row}[name]" no_lang="1" readonly="true"/>
|
||||
<vfs id="$row" no_lang="1"/>
|
||||
<vfs-size align="right" id="${row}[size]"/>
|
||||
<date-time id="${row}[mtime]" readonly="true"/>
|
||||
<date-time id="${row}[ctime]" readonly="true"/>
|
||||
|
Loading…
Reference in New Issue
Block a user