mirror of
https://github.com/Radarr/Radarr
synced 2025-02-05 22:32:03 +00:00
12 lines
463 B
JavaScript
12 lines
463 B
JavaScript
|
/// <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 });
|
|||
|
|
|||
|
|
|||
|
});
|