DO NOT D,OWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB

Resolves 22528,22306. ClientDependency nearly done.

[TFS Changeset #57300]
This commit is contained in:
Shandem
2009-07-28 16:22:14 +00:00
parent 9a46338123
commit f24a26b264
42 changed files with 821 additions and 388 deletions

View File

@@ -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
}
}