mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed ninjet's race condition
This commit is contained in:
12
NzbDrone.Web/Scripts/Notifications.js
Normal file
12
NzbDrone.Web/Scripts/Notifications.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/// <reference path="jquery-1.4.1-vsdoc.js" />
|
||||
$(function () {
|
||||
alert("Notification");
|
||||
|
||||
var container = $("#container-bottom").notify({ stack: 'above' });
|
||||
container.notify("create", {
|
||||
title: 'Look ma, two containers!',
|
||||
text: 'This container is positioned on the bottom of the screen. Notifications will stack on top of each other with the <code>position</code> attribute set to <code>above</code>.'
|
||||
}, { expires: false });
|
||||
|
||||
|
||||
});
|
Reference in New Issue
Block a user