diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-16 12:49:34 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-07 01:22:43 +0200 |
commit | f11946c8c0c41e87e17c50b5e3691ece11a09ae4 (patch) | |
tree | f85ae67310e055395fa69f3c6c9c7e764e87c355 /apps/files/js/filelist.js | |
parent | b6192db61076b04005388b889d6ec666f3e87687 (diff) | |
download | nextcloud-server-f11946c8c0c41e87e17c50b5e3691ece11a09ae4.tar.gz nextcloud-server-f11946c8c0c41e87e17c50b5e3691ece11a09ae4.zip |
Improve layout, fix mime icon
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e228b8e852b..a03c4e1754f 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1305,6 +1305,12 @@ ready(iconURL); // set mimeicon URL urlSpec.file = OCA.Files.Files.fixPath(path); + if (options.x) { + urlSpec.x = options.x; + } + if (options.y) { + urlSpec.y = options.y; + } if (etag){ // use etag as cache buster |