18 lines
308 B
C#
18 lines
308 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|