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:
Diffstat (limited to 'apps/files/js/breadcrumb.js')
-rw-r--r--apps/files/js/breadcrumb.js23
1 files changed, 3 insertions, 20 deletions
diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js
index 8a5d42bd975..383d3debd09 100644
--- a/apps/files/js/breadcrumb.js
+++ b/apps/files/js/breadcrumb.js
@@ -58,9 +58,7 @@
BreadCrumb.prototype = {
$el: null,
dir: null,
- maxDepthDir: null,
dirInfo: null,
- activeItemIndex: 0,
/**
* Total width of all breadcrumbs
@@ -83,9 +81,6 @@
dir = dir.replace(/\\/g, '/');
dir = dir || '/';
if (dir !== this.dir) {
- if ((this.maxDepthDir || "").search(dir) !== 0) {
- this.maxDepthDir = dir;
- }
this.dir = dir;
this.render();
}
@@ -123,7 +118,7 @@
// Menu is destroyed on every change, we need to init it
OC.unregisterMenu($('.crumbmenu > .icon-more'), $('.crumbmenu > .popovermenu'));
- var parts = this._makeCrumbs(this.maxDepthDir || '/');
+ var parts = this._makeCrumbs(this.dir || '/');
var $crumb;
var $menuItem;
this.$el.empty();
@@ -168,7 +163,7 @@
if(menuPart.dir) {
$menuItem = $('<li class="crumblist"><a><span class="icon-folder"></span><span></span></a></li>');
$menuItem.data('dir', menuPart.dir);
- $menuItem.find('a').attr('href', this.getCrumbUrl(menuPart, j));
+ $menuItem.find('a').attr('href', this.getCrumbUrl(part, j));
$menuItem.find('span:eq(1)').text(menuPart.name);
this.$menu.children('ul').append($menuItem);
if (this.onClick) {
@@ -176,16 +171,11 @@
}
}
}
-
_.each(this._detailViews, function(view) {
view.render({
dirInfo: this.dirInfo
});
-
- if (this.breadcrumbs.length > 2) {
- this.breadcrumbs[this.activeItemIndex + 2].append(view.$el);
- }
-
+ $crumb.append(view.$el);
$menuItem.append(view.$el.clone(true));
}, this);
@@ -238,15 +228,8 @@
for (var i = 0; i < parts.length; i++) {
var part = parts[i];
pathToHere = pathToHere + '/' + part;
-
- let classes = "";
- if (pathToHere === this.dir) {
- this.activeItemIndex = i;
- classes = "active";
- }
crumbs.push({
dir: pathToHere,
- class: classes,
name: part
});
}