Skip to content

Commit db232ff

Browse files
committed
Fix a few missing uses of session (instead of regular) embedded in CSS classes
- Legacy-Id: 17146
1 parent 173b242 commit db232ff

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/static/ietf/css/agenda/agenda.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ td.ourconflicts, td.theirconflicts {
907907
background-image: url('images/orange_hatch.png');
908908
}
909909

910-
.agenda_slot_session {
910+
.agenda_slot_regular {
911911
background-color: #E0E0E0;
912912
}
913913

ietf/static/ietf/js/agenda/timeslot_edit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ function build_select_box(roomtype, domid, slot_id, select_id) {
254254

255255
if(roomtype == "regular") {
256256
roomtypesession="selected";
257-
roomtypeclass="agenda_slot_session";
257+
roomtypeclass="agenda_slot_regular";
258258
} else if(roomtype == "other") {
259259
roomtypeother="selected";
260260
roomtypeclass="agenda_slot_other";
@@ -290,7 +290,7 @@ function insert_timeslotedit_cell(ts) {
290290

291291
$(slot_id).removeClass("agenda_slot_unavailable")
292292
$(slot_id).removeClass("agenda_slot_other")
293-
$(slot_id).removeClass("agenda_slot_session")
293+
$(slot_id).removeClass("agenda_slot_regular")
294294
$(slot_id).removeClass("agenda_slot_plenary")
295295
$(slot_id).removeClass("agenda_slot_reserved")
296296
$(slot_id).removeClass("no_timeslot");
@@ -341,7 +341,7 @@ function create_timeslotedit_cell(slot_id) {
341341

342342
/* $(slot_id).removeClass("agenda_slot_unavailable") */
343343
$(slot_id).removeClass("agenda_slot_other")
344-
$(slot_id).removeClass("agenda_slot_session")
344+
$(slot_id).removeClass("agenda_slot_regular")
345345
$(slot_id).removeClass("agenda_slot_plenary")
346346
$(slot_id).removeClass("agenda_slot_reserved")
347347

0 commit comments

Comments
 (0)