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',
|
2021-01-31 17:57:35 +01:00
|
|
|
text: '<b>Autodetection may not be able to run on this video.</b> On sites that utilize DRM you will have to set aspect ratio manually.',
|
2020-12-05 03:30:43 +01:00
|
|
|
timeout: 5000,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Notifications;
|