mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 09:49:52 +00:00
WebUI: unify comment format
This commit is contained in:
parent
bf4e0df386
commit
648dd9988d
@ -53,7 +53,8 @@ export default [
|
||||
"allowTemplateLiterals": true
|
||||
}
|
||||
],
|
||||
"Stylistic/semi": "error"
|
||||
"Stylistic/semi": "error",
|
||||
"Stylistic/spaced-comment": ["error", "always", { "exceptions": ["*"] }]
|
||||
}
|
||||
}
|
||||
];
|
||||
|
@ -172,7 +172,7 @@ window.addEventListener("DOMContentLoaded", () => {
|
||||
saveColumnSizes.delay(200); // Resizing might takes some time.
|
||||
});
|
||||
|
||||
/*MochaUI.Desktop = new MochaUI.Desktop();
|
||||
/* MochaUI.Desktop = new MochaUI.Desktop();
|
||||
MochaUI.Desktop.desktop.setStyles({
|
||||
'background': '#fff',
|
||||
'visibility': 'visible'
|
||||
|
@ -47,10 +47,10 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
|
||||
let lastShownContextMenu = null;
|
||||
const ContextMenu = new Class({
|
||||
//implements
|
||||
// implements
|
||||
Implements: [Options, Events],
|
||||
|
||||
//options
|
||||
// options
|
||||
options: {
|
||||
actions: {},
|
||||
menu: "menu_id",
|
||||
@ -67,16 +67,16 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
touchTimer: 600
|
||||
},
|
||||
|
||||
//initialization
|
||||
// initialization
|
||||
initialize: function(options) {
|
||||
//set options
|
||||
// set options
|
||||
this.setOptions(options);
|
||||
|
||||
//option diffs menu
|
||||
// option diffs menu
|
||||
this.menu = $(this.options.menu);
|
||||
this.targets = $$(this.options.targets);
|
||||
|
||||
//fx
|
||||
// fx
|
||||
this.fx = new Fx.Tween(this.menu, {
|
||||
property: "opacity",
|
||||
duration: this.options.fadeSpeed,
|
||||
@ -88,10 +88,10 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
}.bind(this.menu)
|
||||
});
|
||||
|
||||
//hide and begin the listener
|
||||
// hide and begin the listener
|
||||
this.hide().startListener();
|
||||
|
||||
//hide the menu
|
||||
// hide the menu
|
||||
this.menu.setStyles({
|
||||
"position": "absolute",
|
||||
"top": "-900000px",
|
||||
@ -197,17 +197,17 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
if (this.options.disabled)
|
||||
return;
|
||||
|
||||
//prevent default, if told to
|
||||
// prevent default, if told to
|
||||
if (this.options.stopEvent)
|
||||
e.stop();
|
||||
//record this as the trigger
|
||||
// record this as the trigger
|
||||
this.options.element = $(el);
|
||||
this.adjustMenuPosition(e);
|
||||
//show the menu
|
||||
// show the menu
|
||||
this.show();
|
||||
},
|
||||
|
||||
//get things started
|
||||
// get things started
|
||||
startListener: function() {
|
||||
/* all elements */
|
||||
this.targets.each((el) => {
|
||||
@ -225,7 +225,7 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
});
|
||||
}, this);
|
||||
|
||||
//hide on body click
|
||||
// hide on body click
|
||||
$(document.body).addEvent("click", () => {
|
||||
this.hide();
|
||||
});
|
||||
@ -233,7 +233,7 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
|
||||
updateMenuItems: function() {},
|
||||
|
||||
//show menu
|
||||
// show menu
|
||||
show: function(trigger) {
|
||||
if (lastShownContextMenu && (lastShownContextMenu !== this))
|
||||
lastShownContextMenu.hide();
|
||||
@ -243,11 +243,11 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
return this;
|
||||
},
|
||||
|
||||
//hide the menu
|
||||
// hide the menu
|
||||
hide: function(trigger) {
|
||||
if (lastShownContextMenu && (lastShownContextMenu.menu.style.visibility !== "hidden")) {
|
||||
this.fx.start(0);
|
||||
//this.menu.fade('out');
|
||||
// this.menu.fade('out');
|
||||
this.fireEvent("hide");
|
||||
}
|
||||
return this;
|
||||
@ -263,31 +263,31 @@ window.qBittorrent.ContextMenu = (function() {
|
||||
return this.menu.getElement("a[href$=" + item + "]").firstChild.style.opacity !== "0";
|
||||
},
|
||||
|
||||
//hide an item
|
||||
// hide an item
|
||||
hideItem: function(item) {
|
||||
this.menu.getElement("a[href$=" + item + "]").parentNode.addClass("invisible");
|
||||
return this;
|
||||
},
|
||||
|
||||
//show an item
|
||||
// show an item
|
||||
showItem: function(item) {
|
||||
this.menu.getElement("a[href$=" + item + "]").parentNode.removeClass("invisible");
|
||||
return this;
|
||||
},
|
||||
|
||||
//disable the entire menu
|
||||
// disable the entire menu
|
||||
disable: function() {
|
||||
this.options.disabled = true;
|
||||
return this;
|
||||
},
|
||||
|
||||
//enable the entire menu
|
||||
// enable the entire menu
|
||||
enable: function() {
|
||||
this.options.disabled = false;
|
||||
return this;
|
||||
},
|
||||
|
||||
//execute an action
|
||||
// execute an action
|
||||
execute: function(action, element) {
|
||||
if (this.options.actions[action])
|
||||
this.options.actions[action](element, this, action);
|
||||
|
@ -3126,7 +3126,7 @@ window.qBittorrent.DynamicTable = (function() {
|
||||
};
|
||||
|
||||
this.columns["type"].updateTd = function(td, row) {
|
||||
//Type of the message: Log::NORMAL: 1, Log::INFO: 2, Log::WARNING: 4, Log::CRITICAL: 8
|
||||
// Type of the message: Log::NORMAL: 1, Log::INFO: 2, Log::WARNING: 4, Log::CRITICAL: 8
|
||||
let logLevel, addClass;
|
||||
switch (this.getRowValue(row).toInt()) {
|
||||
case 1:
|
||||
|
@ -76,7 +76,7 @@ window.qBittorrent.PropWebseeds = (function() {
|
||||
this.updateRow(tableRow, row);
|
||||
return;
|
||||
}
|
||||
//this.removeRow(id);
|
||||
// this.removeRow(id);
|
||||
const tr = new Element("tr");
|
||||
this.rows.set(url, tr);
|
||||
for (let i = 0; i < row.length; ++i) {
|
||||
|
@ -376,7 +376,7 @@
|
||||
}));
|
||||
}
|
||||
}
|
||||
//filter read articles if "Unread" feed is selected
|
||||
// filter read articles if "Unread" feed is selected
|
||||
if (path === "")
|
||||
visibleArticles = visibleArticles.filter((a) => !a.isRead);
|
||||
|
||||
@ -427,7 +427,7 @@
|
||||
$("rssDetailsView").append(torrentDescription);
|
||||
document.getElementById("rssDescription").srcdoc = '<html><head><link rel="stylesheet" type="text/css" href="css/style.css" /></head><body>' + article.description + "</body></html>";
|
||||
|
||||
//calculate height to fill screen
|
||||
// calculate height to fill screen
|
||||
document.getElementById("rssDescription").style.height =
|
||||
"calc(100% - " + document.getElementById("rssTorrentDetailsName").offsetHeight + "px - "
|
||||
+ document.getElementById("rssTorrentDetailsDate").offsetHeight + "px - 5px)";
|
||||
|
@ -28,7 +28,7 @@
|
||||
};
|
||||
};
|
||||
|
||||
//create a context menu
|
||||
// create a context menu
|
||||
const contextMenu = new window.qBittorrent.ContextMenu.TorrentsTableContextMenu({
|
||||
targets: ".torrentsTableContextMenuTarget",
|
||||
menu: "torrentsTableMenu",
|
||||
|
Loading…
Reference in New Issue
Block a user