changed variable name (bug 652954)

This commit is contained in:
Andy McKay 2011-04-26 14:37:38 -07:00
Родитель 3625d630c9
Коммит f93c8f122c
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,6 @@
<li>
<a class="{{ file_viewer_class(value, selected) }}"
href="{{ value['url'] }}"
data-short="{{ value['short'] }}"
title="{{ value['filename'] }}">{{ value['truncated'] }}</a>
</li>

Просмотреть файл

@ -101,6 +101,7 @@ function bind_viewer(nodes) {
$(this).prev('li').find('a:first')
.removeClass('closed').addClass('open');
});
this.nodes.$title.text($link.attr('data-short'));
};
this.load = function($link) {
/* Accepts a jQuery wrapped node, which is part of the tree.
@ -123,7 +124,6 @@ function bind_viewer(nodes) {
self.toggle_files('hide');
}
});
this.nodes.$title.text($link.closest('li').attr('data-short'));
};
this.select = function($link) {
/* Given a node, alters the tree and then loads the content. */
@ -220,8 +220,9 @@ $(document).ready(function() {
$.getJSON($('#extracting').attr('data-url'), function(json) {
if (json && json.status) {
$('#file-viewer').load(window.location.pathname + ' #file-viewer', function() {
nodes.$files = $('#files') // rebind
viewer = bind_viewer(nodes);
viewer.selected(viewer.$tree.find('a.selected'));
viewer.selected(viewer.nodes.$files.find('a.selected'));
viewer.compute($('#content-wrapper'));
});
} else {