code cleanup
This commit is contained in:
parent
538c4921e6
commit
44d148ccc6
15
tt-rss.js
15
tt-rss.js
|
@ -676,11 +676,6 @@ function quickMenuGo(opid) {
|
||||||
resize_headlines();
|
resize_headlines();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if (opid == "qmcDownload") {
|
|
||||||
displayDlg("offlineDownload");
|
|
||||||
return;
|
|
||||||
} */
|
|
||||||
|
|
||||||
if (opid == "qmcResetCats") {
|
if (opid == "qmcResetCats") {
|
||||||
|
|
||||||
if (confirm(__("Reset category order?"))) {
|
if (confirm(__("Reset category order?"))) {
|
||||||
|
@ -1314,16 +1309,6 @@ function hotkey_handler(e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if (keycode == 68 && shift_key) { // D
|
|
||||||
initiate_offline_download();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (keycode == 68) { // d
|
|
||||||
displayDlg("offlineDownload");
|
|
||||||
return false;
|
|
||||||
} */
|
|
||||||
|
|
||||||
if (keycode == 87) { // w
|
if (keycode == 87) { // w
|
||||||
feeds_sort_by_unread = !feeds_sort_by_unread;
|
feeds_sort_by_unread = !feeds_sort_by_unread;
|
||||||
return resort_feedlist();
|
return resort_feedlist();
|
||||||
|
|
|
@ -190,7 +190,6 @@ window.onload = init;
|
||||||
<option value="qmcAddFilter"> <?php echo __('Create filter...') ?></option>
|
<option value="qmcAddFilter"> <?php echo __('Create filter...') ?></option>
|
||||||
<option value="qmcResetUI"> <?php echo __('Reset UI layout') ?></option>
|
<option value="qmcResetUI"> <?php echo __('Reset UI layout') ?></option>
|
||||||
<option value="qmcResetCats"> <?php echo __('Reset category order') ?></option>
|
<option value="qmcResetCats"> <?php echo __('Reset category order') ?></option>
|
||||||
<option id="qmcDownload" style="display : none" value="qmcDownload"><?php echo __(' Download new articles...') ?></option>
|
|
||||||
<option value="qmcHKhelp"><?php echo __(' Keyboard shortcuts') ?></option>
|
<option value="qmcHKhelp"><?php echo __(' Keyboard shortcuts') ?></option>
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in New Issue