ClientDependency work. Resolved old 20914 bug. Initial fix to remove Umbraco.aspx page popup. [TFS Changeset #56361]
18 lines
479 B
C#
18 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace umbraco.presentation.ClientDependency
|
|
{
|
|
public interface IClientDependencyFile
|
|
{
|
|
string FilePath { get; set; }
|
|
ClientDependencyType DependencyType { get; set; }
|
|
string InvokeJavascriptMethodOnLoad { get; set; }
|
|
int Priority { get; set; }
|
|
//string CompositeGroupName { get; set; }
|
|
string PathNameAlias { get; set; }
|
|
bool DoNotOptimize { get; set; }
|
|
}
|
|
}
|