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
| /** DATA ARRAY (MUST BE FIRST) */ | |
| const comicPros = [ | |
| { name: "Adam Kubert", imageUrl: "https://i.imgur.com/cuO3qfP.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Adam_Kubert.html" }, | |
| { name: "Al Milgrom", imageUrl: "https://i.imgur.com/Iqa5kxW.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Al_Milgrom.html" }, | |
| { name: "Alex Sinclair", imageUrl: "https://i.imgur.com/MFRnx0y.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Alex_Sinclair.html" }, | |
| { name: "Amanda Conner 1", imageUrl: "https://i.imgur.com/yEmhdDf.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" }, | |
| { name: "Amanda Conner 2", imageUrl: "https://i.imgur.com/VuBJFAv.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" }, | |
| { name: "Andy Kubert", imageUrl: "https://i.imgur.com/vtxb8H8.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Andy_Kubert.html" }, | |
| { name: "Angel Medina", imageUrl: |
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
| const container = document.getElementById('signatures-display'); | |
| const searchBar = document.getElementById('search-bar'); | |
| // Sort the list alphabetically by name upon load | |
| comicPros.sort((a, b) => a.name.localeCompare(b.name)); | |
| /** | |
| * Creates a single HTML element for a signature item. | |
| * @param {object} pro - The professional's data object. | |
| * @returns {HTMLElement} - The fully constructed div element. |
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
| const comicPros = [ | |
| { name: "Adam Kubert", imageUrl: "https://i.imgur.com/cuO3qfP.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Adam_Kubert.html" }, | |
| { name: "Al Milgrom", imageUrl: "https://i.imgur.com/Iqa5kxW.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Al_Milgrom.html" }, | |
| { name: "Alex Sinclair", imageUrl: "https://i.imgur.com/MFRnx0y.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Alex_Sinclair.html" }, | |
| { name: "Amanda Conner 1", imageUrl: "https://i.imgur.com/yEmhdDf.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" }, | |
| { name: "Amanda Conner 2", imageUrl: "https://i.imgur.com/VuBJFAv.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" }, | |
| { name: "Andy Kubert", imageUrl: "https://i.imgur.com/vtxb8H8.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Andy_Kubert.html" }, | |
| { name: "Angel Medina", imageUrl: "https://i.imgur.com/DGybX3c.jpeg" |