summaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-01-31 19:00:06 +0100
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-01-31 19:55:33 +0100
commit96bc1397b1d03d52da1befb685f331be5183e782 (patch)
treef2bdd08a70220698933cb6f2c6871e2a53828686 /apps/files/js/filelist.js
parent72a424d4c843c019301a1ee61e6ed8bc0f60913f (diff)
downloadnextcloud-server-96bc1397b1d03d52da1befb685f331be5183e782.tar.gz
nextcloud-server-96bc1397b1d03d52da1befb685f331be5183e782.zip
Add missing trailing ";"
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 66965eab52b..44d607ada49 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -361,7 +361,7 @@
this.$fileList.on('click','td.filename>a.name, td.filesize, td.date', _.bind(this._onClickFile, this));
this.$fileList.on("droppedOnTrash", function (event, filename, directory) {
- self.do_delete(filename, directory)
+ self.do_delete(filename, directory);
});
this.$fileList.on('change', 'td.selection>.selectCheckBox', _.bind(this._onClickFileCheckbox, this));