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
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-09-16 23:09:47 +0400
committerLukas Reschke <lukas@owncloud.com>2014-09-16 23:09:47 +0400
commit21afcb3e94b65164d4ec75f2d0e9ed76305687bb (patch)
tree94b49bf19907e6d5e3ba0ddf8e8264bcefc08d9e /apps
parent368391e40138739f6a02ad6cd44a925bdff970a8 (diff)
parent140c89f1c3e40127e3e3c176fa62e5d452f331b8 (diff)
Merge pull request #10902 from owncloud/fix-ellepsis
Adding link to ellipsis and fixing styling
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/breadcrumb.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js
index 7381fa8e432..8df9b7ee6fe 100644
--- a/apps/files/js/breadcrumb.js
+++ b/apps/files/js/breadcrumb.js
@@ -224,6 +224,8 @@
this.$el.find('.crumb.ellipsized')
.attr('title', $crumb.attr('data-dir'))
.tipsy();
+ this.$el.find('.ellipsis')
+ .wrap('<a class="ellipsislink" href="' + encodeURI(OC.generateUrl('apps/files/?dir=' + $crumb.attr('data-dir'))) + '"></a>');
}
// and all the previous ones (going backwards)
firstHidden = false;