mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
16 lines
510 B
C#
16 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Orchard.UI.Resources;
|
|
|
|
namespace Orchard.Core.Shapes {
|
|
public class CoreShapesResourceManifest : ResourceManifest {
|
|
public CoreShapesResourceManifest() {
|
|
DefineScript("ShapesBase").SetUrl("base.js").SetDependencies("jQuery");
|
|
DefineStyle("Shapes").SetUrl("site.css"); // todo: missing
|
|
DefineStyle("ShapesSpecial").SetUrl("special.css");
|
|
}
|
|
}
|
|
}
|