mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-26 21:04:58 -05:00
11 lines
441 B
JavaScript
11 lines
441 B
JavaScript
//defines available frames
|
|
availableFrames = [
|
|
{name:'Post-M15', src:'/img/frames/m15/theList/regular.svg'},
|
|
{name:'Pre-M15', src:'/img/frames/m15/theList/old.svg'}
|
|
];
|
|
//disables/enables the "Load Frame Version" button
|
|
document.querySelector('#loadFrameVersion').disabled = true;
|
|
//defines process for loading this version, if applicable
|
|
document.querySelector('#loadFrameVersion').onclick = null;
|
|
//loads available frames
|
|
loadFramePack(); |