14 lines
400 B
JavaScript
14 lines
400 B
JavaScript
|
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;
|