mirror of
https://github.com/monlor/MIXBOX-ARCHIVE.git
synced 2026-03-11 16:01:35 +00:00
42 lines
870 B
JavaScript
42 lines
870 B
JavaScript
system.plugin = {
|
|
exec: function(key)
|
|
{
|
|
switch (key)
|
|
{
|
|
// Replace Tracker
|
|
case "replace-tracker":
|
|
system.openDialogFromTemplate({
|
|
id: "dialog-system-replaceTracker",
|
|
options: {
|
|
title: system.lang.dialog["system-replaceTracker"].title,
|
|
width: 600,
|
|
height: 220
|
|
}
|
|
});
|
|
break;
|
|
|
|
// Automatically match the data directory
|
|
case "auto-match-data-folder":
|
|
var rows = system.control.torrentlist.datagrid("getChecked");
|
|
var ids = new Array();
|
|
for (var i in rows)
|
|
{
|
|
ids.push(rows[i].id);
|
|
}
|
|
if (ids.length==0) return;
|
|
|
|
system.openDialogFromTemplate({
|
|
id: "dialog-auto-match-data-folder",
|
|
options: {
|
|
title: system.lang.dialog["auto-match-data-folder"].title,
|
|
width: 530,
|
|
height: 280
|
|
},
|
|
datas: {
|
|
"ids": ids
|
|
}
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
}; |