|
|
|
@ -293,7 +293,7 @@ var TorrentsTableContextMenu = new Class({
@@ -293,7 +293,7 @@ var TorrentsTableContextMenu = new Class({
|
|
|
|
|
var categoryList = $('contextCategoryList'); |
|
|
|
|
categoryList.empty(); |
|
|
|
|
categoryList.appendChild(new Element('li', {html: '<a href="javascript:newCategoryFN();"><img src="theme/list-add" alt="QBT_TR(New...)QBT_TR"/> QBT_TR(New...)QBT_TR</a>'})); |
|
|
|
|
categoryList.appendChild(new Element('li', {html: '<a href="javascript:updateCategoryFN(0);"><img src="theme/edit-clear" alt="QBT_TR(Reset)QBT_TR"/> QBT_TR(Reset)QBT_TR</a>'})); |
|
|
|
|
categoryList.appendChild(new Element('li', {html: '<a href="javascript:setCategoryFN(0);"><img src="theme/edit-clear" alt="QBT_TR(Reset)QBT_TR"/> QBT_TR(Reset)QBT_TR</a>'})); |
|
|
|
|
|
|
|
|
|
var sortedCategories = [] |
|
|
|
|
Object.each(category_list, function (category) { |
|
|
|
@ -304,7 +304,7 @@ var TorrentsTableContextMenu = new Class({
@@ -304,7 +304,7 @@ var TorrentsTableContextMenu = new Class({
|
|
|
|
|
var first = true; |
|
|
|
|
Object.each(sortedCategories, function (categoryName) { |
|
|
|
|
var categoryHash = genHash(categoryName); |
|
|
|
|
var el = new Element('li', {html: '<a href="javascript:updateCategoryFN(\'' + categoryHash + '\');"><img src="theme/inode-directory"/> ' + escapeHtml(categoryName) + '</a>'}); |
|
|
|
|
var el = new Element('li', {html: '<a href="javascript:setCategoryFN(\'' + categoryHash + '\');"><img src="theme/inode-directory"/> ' + escapeHtml(categoryName) + '</a>'}); |
|
|
|
|
if (first) { |
|
|
|
|
el.addClass('separator'); |
|
|
|
|
first = false; |
|
|
|
|