Skip to content

Commit

Permalink
Remove my user ID and display specific information
Browse files Browse the repository at this point in the history
  • Loading branch information
gocho1307 authored Mar 30, 2023
1 parent 050eaaa commit cce09b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function drawUserIDScreen() {
// 1. Student ID
let student_ID_pos_y_offset = main_text.size().height + 400; // y offset from previous item

student_ID_form = createInput('103124'); // create input field
student_ID_form = createInput(''); // create input field
student_ID_form.position(200, student_ID_pos_y_offset);

student_ID_label = createDiv('Student number (int)'); // create label
Expand All @@ -77,7 +77,7 @@ function drawUserIDScreen() {
// 2. Display size
let display_size_pos_y_offset = student_ID_pos_y_offset + student_ID_form.size().height + 20;

display_size_form = createInput('15'); // create input field
display_size_form = createInput(''); // create input field
display_size_form.position(200, display_size_pos_y_offset);

display_size_label = createDiv('Display size in inches'); // create label
Expand Down

0 comments on commit cce09b6

Please sign in to comment.