ultrawidify/src/common/data/notifications.js

14 lines
400 B
JavaScript
Raw Normal View History

2020-12-05 03:30:43 +01:00
let Notifications = Object.freeze({
'TEST_NOTIFICATION': {
icon: 'card-text',
text: 'This is a test notification.',
timeout: -1,
},
'AARD_DRM': {
icon: 'exclamation-triangle',
text: '<b>Autodetection cannot run on this video.</b> This usually happens when sites use DRM. You will have to set aspect ratio manually.',
timeout: 5000,
}
});
export default Notifications;