href -> onclick in headline subtoolbar
This commit is contained in:
parent
c441662f98
commit
e7811ea52f
1 changed files with 10 additions and 13 deletions
23
backend.php
23
backend.php
|
@ -1437,27 +1437,24 @@
|
||||||
|
|
||||||
print "<td class=\"headlineActions\">
|
print "<td class=\"headlineActions\">
|
||||||
Select:
|
Select:
|
||||||
<a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
|
<a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)\">All</a>,
|
||||||
'RROW-', 'RCHK-', true, '', true)\">All</a>,
|
<a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)\">Unread</a>,
|
||||||
<a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
|
<a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)\">None</a>
|
||||||
'RROW-', 'RCHK-', true, 'Unread', true)\">Unread</a>,
|
|
||||||
<a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
|
|
||||||
'RROW-', 'RCHK-', false)\">None</a>
|
|
||||||
|
|
||||||
Toggle: <a href=\"javascript:selectionToggleUnread()\">Unread</a>,
|
Toggle: <a href='#' onclick=\"javascript:selectionToggleUnread()\">Unread</a>,
|
||||||
<a href=\"javascript:selectionToggleMarked()\">Starred</a>";
|
<a href='#' onclick=\"javascript:selectionToggleMarked()\">Starred</a>";
|
||||||
print "</td>";
|
print "</td>";
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
print "<td class=\"headlineActions\">
|
print "<td class=\"headlineActions\">
|
||||||
Select:
|
Select:
|
||||||
<a href=\"javascript:cdmSelectArticles('all')\">All</a>,
|
<a href=\"#\" onclick=\"javascript:cdmSelectArticles('all')\">All</a>,
|
||||||
<a href=\"javascript:cdmSelectArticles('unread')\">Unread</a>,
|
<a href=\"#\" onclick=\"javascript:cdmSelectArticles('unread')\">Unread</a>,
|
||||||
<a href=\"javascript:cdmSelectArticles('none')\">None</a>
|
<a href=\"#\" onclick=\"javascript:cdmSelectArticles('none')\">None</a>
|
||||||
|
|
||||||
Toggle: <a href=\"javascript:selectionToggleUnread(true)\">Unread</a>,
|
Toggle: <a href=\"#\" onclick=\"javascript:selectionToggleUnread(true)\">Unread</a>,
|
||||||
<a href=\"javascript:selectionToggleMarked(true)\">Starred</a>";
|
<a href=\"#\" onclick=\"javascript:selectionToggleMarked(true)\">Starred</a>";
|
||||||
|
|
||||||
print "</td>";
|
print "</td>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue