Files
WVUMedicine-HAWebClient/fakealert.html
T

9 lines
306 B
HTML

var fake = document.createElement('div');
fake.id = 'fake-alert';
fake.innerHTML = 'FAKE TEST ALERT\nGeo: Test\nElapsed Time: 0:00:01';
fake.style.position = 'fixed';
fake.style.bottom = '0';
fake.style.right = '0';
fake.style.fontSize = '1px';
fake.style.opacity = '0.01';
document.body.appendChild(fake);