Oops! I committed and pushed some crap that I didn't mean to.
git rm -r --cached some-directory
git commit -m 'Remove the now ignored directory "some-directory"'
git push origin master
| var access = function(el, place_focus_before) { | |
| var focus_el, focus_method, ogti, onblur_el, onblur_temp_el, temp_el; | |
| onblur_el = function(e) { | |
| if (el.getAttribute('data-ogti')) { | |
| el.setAttribute('tabindex', ogti); | |
| } else { | |
| el.removeAttribute('tabindex'); | |
| } | |
| el.removeAttribute('data-ogti'); | |
| el.removeEventListener('focusout', focus_method); |
| tell application "Terminal" | |
| activate | |
| do script "cd ~/path/to/dir && http-server" | |
| end tell | |
| tell application "Google Chrome" | |
| open location "http://mydomain.com/" | |
| delay 1 | |
| end tell |
| <html> | |
| <head></head> | |
| <body> | |
| <section> | |
| </section> | |
| <div | |
| </body> | |
| </html> |
| // Hide and unhide from assistive technology (AT) | |
| const hideFromAT = function(el){ | |
| const { body } = document; | |
| let currentEl = el; | |
| // If there are any nodes with oldAriaHiddenVal set, we should | |
| // bail, since it has already been done. | |
| const hiddenEl = document.querySelector('[data-original-aria-hidden]'); |
| export const ariaAnnounce = (message: string, manners = 'assertive'): HTMLElement => { | |
| let announceTimeout: ReturnType<typeof setTimeout> | null; | |
| announceTimeout = null; | |
| let announcer: HTMLElement | null = document.querySelector('#announce-this'); | |
| const clearAnnouncer = (): HTMLElement => { | |
| if (announcer) { | |
| announcer.setAttribute('aria-live', 'off'); |
The following table outlines the detailed functional requirements of The Urlist website.
| Requirement ID | Description | User Story | Expected Behavior/Outcome |
|---|---|---|---|
| FR001 | Creating a New URL List | As a user, I want to be able to start a new, empty list so I can begin adding URLs. | The system should provide a clear way for the user to initiate the creation of a new list, potentially presenting an empty list view or an "add new list" button. |
| FR002 | A |