From 43a72ed5e58cb4ae4e938bcdb524360948ba3bc1 Mon Sep 17 00:00:00 2001 From: kgiszewski Date: Mon, 17 Aug 2015 12:16:38 -0400 Subject: [PATCH] Use relative paths instead of tilde due to core compatibility issues --- .../PropertyEditors/ArcheTypePropertyEditor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs b/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs index f8c7998..728d855 100644 --- a/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs +++ b/app/Umbraco/Umbraco.Archetype/PropertyEditors/ArcheTypePropertyEditor.cs @@ -15,8 +15,8 @@ using Umbraco.Web.Models.ContentEditing; namespace Archetype.PropertyEditors { - [PropertyEditorAsset(ClientDependencyType.Javascript, "~/App_Plugins/Archetype/js/archetype.js")] - [PropertyEditor(Constants.PropertyEditorAlias, "Archetype", "~/App_Plugins/Archetype/views/archetype.html", ValueType = "JSON")] + [PropertyEditorAsset(ClientDependencyType.Javascript, "../App_Plugins/Archetype/js/archetype.js")] + [PropertyEditor(Constants.PropertyEditorAlias, "Archetype", "../App_Plugins/Archetype/views/archetype.html", ValueType = "JSON")] public class ArchetypePropertyEditor : PropertyEditor { #region Pre Value Editor @@ -28,7 +28,7 @@ namespace Archetype.PropertyEditors internal class ArchetypePreValueEditor : PreValueEditor { - [PreValueField("archetypeConfig", "Config", "~/App_Plugins/Archetype/views/archetype.config.html", + [PreValueField("archetypeConfig", "Config", "../App_Plugins/Archetype/views/archetype.config.html", Description = "(Required) Describe your Archetype.")] public string Config { get; set; }