blob: 19e333d9550c776cc965fec86001f618cf2d2162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//-----------------------------------------------------------------------
// <copyright file="UIUtilities.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Extensions.UI {
using System;
using System.Diagnostics.Contracts;
using System.Globalization;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.RelyingParty;
/// <summary>
/// Constants used in implementing support for the UI extension.
/// </summary>
public static class UIUtilities {
/// <summary>
/// The required width of the popup window the relying party creates for the provider.
/// </summary>
public const int PopupWidth = 500; // UI extension calls for 450px, but Yahoo needs 500px
/// <summary>
/// The required height of the popup window the relying party creates for the provider.
/// </summary>
public const int PopupHeight = 500;
}
}
|