(name)
| 175 | // Ticket Triage Guidelines: show next steps based on the ticket's status, |
| 176 | // flags, etc. |
| 177 | function get_boolean_ticket_flag(name) { |
| 178 | return ( |
| 179 | $('#h_' + name) |
| 180 | .next() |
| 181 | .text() |
| 182 | .trim() === 'yes' |
| 183 | ); |
| 184 | } |
| 185 | function get_ticket_flag(name) { |
| 186 | return $('#h_' + name) |
| 187 | .next() |