mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
notification tweaks for chrome
This commit is contained in:
parent
5e30c482cd
commit
276e01166a
2 changed files with 10 additions and 5 deletions
|
@ -1,11 +1,16 @@
|
||||||
$(document).ready(function () {
|
$(window).load(function () {
|
||||||
var speed = 700;
|
var speed = 700;
|
||||||
var isShown = false;
|
var isShown = false;
|
||||||
var currentMessage = "";
|
var currentMessage = "";
|
||||||
|
|
||||||
$.doTimeout(500, refreshNotifications);
|
//workaround for the infinite browser load in chrome
|
||||||
|
if ($.browser.webkit) {
|
||||||
|
$.doTimeout(1000, refreshNotifications);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
refreshNotifications();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function refreshNotifications() {
|
function refreshNotifications() {
|
||||||
$.get('/notification/Comet', { message: currentMessage }, notificationCallback);
|
$.get('/notification/Comet', { message: currentMessage }, notificationCallback);
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<span id="msgText">background notification</span>
|
<span id="msgText">background notification</span>
|
||||||
</div>
|
</div>
|
||||||
@(Html.Telerik().ScriptRegistrar().jQuery(false))
|
@(Html.Telerik().ScriptRegistrar().jQuery(false))
|
||||||
<script type="text/javascript" src="/Scripts/Notification.js" async="async"></script>
|
|
||||||
@RenderSection("Scripts", required: false)
|
@RenderSection("Scripts", required: false)
|
||||||
|
<script type="text/javascript" src="/Scripts/Notification.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue