Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9fc47ebe
Commit
9fc47ebe
authored
Feb 23, 2003
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 186689: Should be able to set all/clear all email options in user preferences with one click.
r= gerv, a= justdave
parent
ba6bd7a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
email.html.tmpl
template/en/default/account/prefs/email.html.tmpl
+20
-0
prefs.html.tmpl
template/en/default/account/prefs/prefs.html.tmpl
+1
-1
No files found.
template/en/default/account/prefs/email.html.tmpl
View file @
9fc47ebe
...
...
@@ -108,7 +108,27 @@
</td>
</tr>
</table>
<noscript>If you had Javascript active, you could toggle all of these with one click.<br></noscript>
<script type="text/javascript">
<!--
function SetCheckboxes(setting) {
for (var count = 0; count < document.userprefsform.elements.length; count++) {
var theinput = document.userprefsform.elements[count];
if (theinput.type == "checkbox") {
if (theinput.name == "ExcludeSelf") {
theinput.checked = false;
}
else {
theinput.checked = setting;
}
}
}
}
document.write('<input type="button" value="Enable All Mail" onclick="SetCheckboxes(true); return false;">\n');
document.write('<input type="button" value="Disable All Mail" onclick="SetCheckboxes(false); return false;">\n');
// -->
</script>
<hr>
<b>Field/recipient specific options:</b>
<br>
...
...
template/en/default/account/prefs/prefs.html.tmpl
View file @
9fc47ebe
...
...
@@ -98,7 +98,7 @@
<h3>[% current_tab.description %]</h3>
<form method="post" action="userprefs.cgi">
<form
name="userprefsform"
method="post" action="userprefs.cgi">
<input type="hidden" name="tab" value="[% current_tab.name %]">
[%# See bug 160710 for why this is done this way %]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment