2009-07-16 14:24:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace umbraco.presentation.ClientDependency.Controls
|
|
|
|
|
|
{
|
|
|
|
|
|
public class JsInclude : ClientDependencyInclude
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public JsInclude()
|
|
|
|
|
|
{
|
|
|
|
|
|
DependencyType = ClientDependencyType.Javascript;
|
|
|
|
|
|
}
|
2009-07-26 15:13:15 +00:00
|
|
|
|
public JsInclude(IClientDependencyFile file)
|
|
|
|
|
|
: base(file)
|
|
|
|
|
|
{
|
|
|
|
|
|
DependencyType = ClientDependencyType.Javascript;
|
|
|
|
|
|
}
|
2009-07-16 14:24:37 +00:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|