1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

remove trigger create when not needed

This commit is contained in:
Luke Pulverenti 2015-12-08 13:57:59 -05:00
parent 76c2164aeb
commit df4f347fb4
9 changed files with 28 additions and 43 deletions

View file

@ -396,7 +396,7 @@ var Dashboard = {
elem.slideDown(400);
}
elem.html(options.html).trigger('create');
elem.html(options.html);
if (options.timeout) {
@ -750,7 +750,7 @@ var Dashboard = {
html += '<p><a data-mini="true" data-role="button" href="mypreferencesmenu.html?userId=' + user.localUser.Id + '" data-icon="gear">' + Globalize.translate('ButtonSettings') + '</button></a>';
}
$('.preferencesContainer', elem).html(html).trigger('create');
$('.preferencesContainer', elem).html(html);
},
getPluginSecurityInfo: function () {