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

update components

This commit is contained in:
Luke Pulverenti 2016-10-02 02:46:32 -04:00
parent d4f9f432a4
commit c7b23209cf
8 changed files with 58 additions and 43 deletions

View file

@ -1,4 +1,5 @@
define(['dialog', 'globalize'], function (dialog, globalize) {
'use strict';
return function (text, title) {
@ -23,7 +24,7 @@ define(['dialog', 'globalize'], function (dialog, globalize) {
options.buttons = items;
return dialog(options).then(function (result) {
if (result == 'ok') {
if (result === 'ok') {
return Promise.resolve();
}