summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-10-19 12:07:59 +0200
committerGitHub <noreply@github.com>2018-10-19 12:07:59 +0200
commitd35b6513cdf799831c72022bee688230812201f8 (patch)
tree8a2ebe2b7f14cea868596e07f5382d71d71c2dd3 /apps/files
parent08476297c3358263da7cbf83ad727de796431d78 (diff)
parent2ad38200fbad6a21403a1addaa65deab72741760 (diff)
downloadnextcloud-server-d35b6513cdf799831c72022bee688230812201f8.tar.gz
nextcloud-server-d35b6513cdf799831c72022bee688230812201f8.zip
Merge pull request #11922 from stweil/semicolons
Add missing semicolons
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/detailsview.js2
-rw-r--r--apps/files/js/filelist.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/detailsview.js b/apps/files/js/detailsview.js
index 2a5d589a730..675e380b52b 100644
--- a/apps/files/js/detailsview.js
+++ b/apps/files/js/detailsview.js
@@ -102,7 +102,7 @@
this.$el.insertAfter($('#app-content'));
} else {
if ($appSidebar[0] !== this.el) {
- $appSidebar.replaceWith(this.$el)
+ $appSidebar.replaceWith(this.$el);
}
}
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 94052b10b33..771ec495a2d 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -310,10 +310,10 @@
breadcrumbOptions.onDrop = _.bind(this._onDropOnBreadCrumb, this);
breadcrumbOptions.onOver = function() {
self.$el.find('td.filename.ui-droppable').droppable('disable');
- }
+ };
breadcrumbOptions.onOut = function() {
self.$el.find('td.filename.ui-droppable').droppable('enable');
- }
+ };
}
this.breadcrumb = new OCA.Files.BreadCrumb(breadcrumbOptions);