DO NOT D,OWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
Resolves 22528,22306. ClientDependency nearly done. [TFS Changeset #57300]
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace umbraco.presentation.ClientDependency
|
||||
{
|
||||
public class BasicClientDependencyFile : IClientDependencyFile
|
||||
{
|
||||
public BasicClientDependencyFile(ClientDependencyType type)
|
||||
{
|
||||
DependencyType = type;
|
||||
}
|
||||
|
||||
#region IClientDependencyFile Members
|
||||
|
||||
public string FilePath { get; set; }
|
||||
public ClientDependencyType DependencyType { get; private set; }
|
||||
public string InvokeJavascriptMethodOnLoad { get; set; }
|
||||
public int Priority { get; set; }
|
||||
public string PathNameAlias { get; set; }
|
||||
public bool DoNotOptimize { get; set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user