This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =================================================================================== | |
| TV SHOWS | |
| =================================================================================== | |
| 3rd Rock From The Sun/ | |
| 8 Simple Rules/ | |
| 30 Rock/ | |
| AfterMASH (1983)/ | |
| Almost Human/ | |
| Alphas/ | |
| Anger Management/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 127.0.0.1 admin.local.biohitechcloud.com | |
| 127.0.0.1 alto-brain.local.biohitechcloud.com | |
| 127.0.0.1 api.local.biohitechcloud.com | |
| 127.0.0.1 auction-api.local.biohitechcloud.com | |
| 127.0.0.1 auction.local.biohitechcloud.com | |
| 127.0.0.1 audit.local.biohitechcloud.com | |
| 127.0.0.1 binpak.local.biohitechcloud.com | |
| 127.0.0.1 cca.local.biohitechcloud.com | |
| 127.0.0.1 collect.local.biohitechcloud.com | |
| 127.0.0.1 customer.local.biohitechcloud.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Directive } from "vue"; | |
| const listOfFocusable = `a[href]:not([tabindex='-1']), | |
| area[href]:not([tabindex='-1']), | |
| input:not([disabled]):not([tabindex='-1']), | |
| select:not([disabled]):not([tabindex='-1']), | |
| textarea:not([disabled]):not([tabindex='-1']), | |
| button:not([disabled]):not([tabindex='-1']), | |
| iframe:not([tabindex='-1']), | |
| [tabindex]:not([tabindex='-1']), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Directive, DirectiveBinding } from "vue"; | |
| let interval: number; | |
| const write = ( | |
| el: HTMLElement, | |
| binding: DirectiveBinding<Array<string> | string> | |
| ) => { | |
| const { value } = binding; |
OlderNewer