upgrade to jquery mobile 1.4.5

This commit is contained in:
Luke Pulverenti
2014-11-02 22:38:43 -05:00
parent 7a4d5b7951
commit 7ca1cd8795
25 changed files with 735 additions and 83 deletions

View File

@@ -1,5 +1,4 @@
using MediaBrowser.Model.Connect;
using System;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Server.Implementations.Connect
@@ -21,7 +20,7 @@ namespace MediaBrowser.Server.Implementations.Connect
/// Gets or sets the authorizations.
/// </summary>
/// <value>The authorizations.</value>
public List<ConnectAuthorization> PendingAuthorizations { get; set; }
public List<ConnectAuthorizationInternal> PendingAuthorizations { get; set; }
/// <summary>
/// Gets or sets the last authorizations refresh.
@@ -31,7 +30,7 @@ namespace MediaBrowser.Server.Implementations.Connect
public ConnectData()
{
PendingAuthorizations = new List<ConnectAuthorization>();
PendingAuthorizations = new List<ConnectAuthorizationInternal>();
}
}
}