Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-10-18 16:47:18 +0300
committerJulius Härtl <jus@bitgrid.net>2018-10-18 16:54:17 +0300
commit45804b5bef932ba86ff5a28a40f1a7ebcb7c5290 (patch)
treef34ec68f71108a93a43781d72fcb12b1901a5d45 /apps/files/js/detailsview.js
parent302a5d81714c9aca3fa38fad9fe8879fb867c3e8 (diff)
Add icon to file sidebar tabs
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files/js/detailsview.js')
-rw-r--r--apps/files/js/detailsview.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/detailsview.js b/apps/files/js/detailsview.js
index 2a5d589a730..ad5c9993524 100644
--- a/apps/files/js/detailsview.js
+++ b/apps/files/js/detailsview.js
@@ -122,7 +122,8 @@
templateVars.tabHeaders = _.map(this._tabViews, function(tabView, i) {
return {
tabId: tabView.id,
- label: tabView.getLabel()
+ label: tabView.getLabel(),
+ tabIcon: tabView.getIcon()
};
});