#3219 closed enhancement (fixed)
boolean argument to toggle functions
Reported by: | dalangalma | Owned by: | flesler |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | effects | Version: | 1.2.6 |
Keywords: | Cc: | dalangalma | |
Blocked by: | Blocking: |
Description
This is similar to #1681 but more general. I'd like it if all the toggle functions (toggle, toggleClass, slideToggle, etc) could take a boolean to say whether to show or hide them. That way you could replace code that was like:
if (hasErrors) { $('#errorPanel).show(); } else { $('#errorPanel).hide(); }
it could just be:
$('#errorPanel').toggle(hasErrors);
Change History (2)
comment:1 Changed 15 years ago by
Owner: | set to flesler |
---|---|
Status: | new → assigned |
comment:2 Changed 15 years ago by
Cc: | dalangalma added |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
This seems like a valid enhancement, I'll take care of this.