Files
Umbraco-CMS/umbraco/presentation.ClientDependency/Controls/JsInclude.cs
Shandem 7455e8f05a DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
More ClientDependency work...converting script and link tags slowly, debug is now off so compression is working.

[TFS Changeset #56602]
2009-07-16 14:24:37 +00:00

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