//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OpenId.Extensions.UI { using System; using System.Diagnostics.Contracts; using System.Globalization; using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OpenId.RelyingParty; /// /// Constants used in implementing support for the UI extension. /// public static class UIUtilities { /// /// The required width of the popup window the relying party creates for the provider. /// public const int PopupWidth = 500; // UI extension calls for 450px, but Yahoo needs 500px /// /// The required height of the popup window the relying party creates for the provider. /// public const int PopupHeight = 500; } }