Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove extra class='submenuctrl' from checkbox input because already present in the enclosing <label> |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bccaea605ccf82c7080f1980d84190a5 |
| User & Date: | andygoth 2016-11-05 03:06:48.475 |
Context
|
2016-11-05
| ||
| 03:14 | Cherrypick [2e9ac33a9a] ... (check-in: e32803bbf6 user: andygoth tags: trunk) | |
| 03:06 | Remove extra class='submenuctrl' from checkbox input because already present in the enclosing <label> ... (check-in: bccaea605c user: andygoth tags: trunk) | |
| 03:04 | Change branch color option from a binary submenu to a checkbox ... (check-in: 3a98c9b541 user: andygoth tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
598 599 600 601 602 603 604 |
(!isTrue) ? " selected":"", aSubmenuCtrl[i].zFalse
);
@ </select>
break;
}
case FF_CHECKBOX:
cgi_printf(
| | < | | 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
(!isTrue) ? " selected":"", aSubmenuCtrl[i].zFalse
);
@ </select>
break;
}
case FF_CHECKBOX:
cgi_printf(
"<label class='submenuctrl'><input type='checkbox' name='%s' "
"value='1'%s%s onchange='gebi(\"f01\").submit();'>%s</label>\n",
zQPN, PB(zQPN) ? " checked" : "", zDisabled, aSubmenuCtrl[i].zLabel
);
break;
}
}
@ </div>
if( nSubmenuCtrl ){
|
| ︙ | ︙ |