mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
more notification updates
This commit is contained in:
parent
0d139f9c21
commit
80d47e611c
10 changed files with 145 additions and 93 deletions
|
@ -1,10 +1,11 @@
|
|||
/// <reference path="jquery-1.5.2-vsdoc.js" />
|
||||
$(function () {
|
||||
var speed = 0;
|
||||
var isShown = false;
|
||||
refreshNotifications();
|
||||
|
||||
var timer = window.setInterval(function () {
|
||||
speed = 500;
|
||||
speed = 1000;
|
||||
refreshNotifications();
|
||||
}, 2000);
|
||||
|
||||
|
@ -28,19 +29,80 @@ $(function () {
|
|||
//SetupNotifications();
|
||||
//DisplayMsg("Scanning Series Folder.");
|
||||
|
||||
|
||||
|
||||
function DisplayMsg(sMsg) {
|
||||
//set the message text
|
||||
$("#msgText").text(sMsg);
|
||||
//show the message
|
||||
$('#msgBox').slideDown(speed, null);
|
||||
|
||||
|
||||
//$("#msgText").text(sMsg);
|
||||
$("#msgText").showHtml(sMsg, 200);
|
||||
|
||||
|
||||
if (!isShown) {
|
||||
isShown = true;
|
||||
if (speed === 0) {
|
||||
$('#msgBox').show();
|
||||
}
|
||||
else {
|
||||
$('#msgBox').show("slide", { direction: "right" }, speed);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function CloseMsg() {
|
||||
//hide the message
|
||||
$('#msgBox').slideUp(speed, null);
|
||||
//clear msg text
|
||||
$("#msgtText").val("");
|
||||
if (isShown) {
|
||||
$('#msgBox').hide("slide", { direction: "right" }, speed);
|
||||
}
|
||||
|
||||
isShown = false;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
// Animates the dimensional changes resulting from altering element contents
|
||||
// Usage examples:
|
||||
// $("#myElement").showHtml("new HTML contents");
|
||||
// $("div").showHtml("new HTML contents", 400);
|
||||
// $(".className").showHtml("new HTML contents", 400,
|
||||
// function() {/* on completion */});
|
||||
(function ($) {
|
||||
$.fn.showHtml = function (html, speed, callback) {
|
||||
return this.each(function () {
|
||||
// The element to be modified
|
||||
var el = $(this);
|
||||
|
||||
// Preserve the original values of width and height - they'll need
|
||||
// to be modified during the animation, but can be restored once
|
||||
// the animation has completed.
|
||||
var finish = { width: this.style.width, height: this.style.height };
|
||||
|
||||
// The original width and height represented as pixel values.
|
||||
// These will only be the same as `finish` if this element had its
|
||||
// dimensions specified explicitly and in pixels. Of course, if that
|
||||
// was done then this entire routine is pointless, as the dimensions
|
||||
// won't change when the content is changed.
|
||||
var cur = { width: el.width() + 'px', height: el.height() + 'px' };
|
||||
|
||||
// Modify the element's contents. Element will resize.
|
||||
el.html(html);
|
||||
|
||||
// Capture the final dimensions of the element
|
||||
// (with initial style settings still in effect)
|
||||
var next = { width: el.width() + 'px', height: el.height() + 'px' };
|
||||
|
||||
el.css(cur) // restore initial dimensions
|
||||
.animate(next, speed, function () // animate to final dimensions
|
||||
{
|
||||
el.css(finish); // restore initial style settings
|
||||
if ($.isFunction(callback)) callback();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
})(jQuery);
|
Loading…
Add table
Add a link
Reference in a new issue