1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 00:41:43 +02:00

alter calendar tooltip container. fixes #857

This commit is contained in:
Benjamin Uzelac 2015-11-15 20:50:17 -06:00
parent 08d19df3f7
commit 1a74990e9b

View File

@ -90,7 +90,7 @@ module.exports = Marionette.ItemView.extend({
element.find('.chart').tooltip({ element.find('.chart').tooltip({
title : 'Episode is downloading - {0}% {1}'.format(progress.toFixed(1), releaseTitle), title : 'Episode is downloading - {0}% {1}'.format(progress.toFixed(1), releaseTitle),
container : '.fc-content-skeleton' container : '.fc'
}); });
} }
} }
@ -271,7 +271,7 @@ module.exports = Marionette.ItemView.extend({
element.find('.fc-time').after('<span class="status pull-right"><i class="{0}"></i></span>'.format(icon)); element.find('.fc-time').after('<span class="status pull-right"><i class="{0}"></i></span>'.format(icon));
element.find('.status').tooltip({ element.find('.status').tooltip({
title : tooltip, title : tooltip,
container : '.fc-content-skeleton' container : '.fc'
}); });
}, },