From faaa40820199e36df0ee03f67c4e7aa775484cf7 Mon Sep 17 00:00:00 2001 From: perploug Date: Thu, 10 Oct 2013 14:09:57 +0200 Subject: [PATCH] ultrasimple picker stub --- .../views/propertyeditors/ultrasimple/ultrasimple.html | 2 ++ .../PropertyEditors/UltraSimplePropertyEditor.cs | 10 ++++++++++ src/Umbraco.Web/Umbraco.Web.csproj | 1 + 3 files changed, 13 insertions(+) create mode 100644 src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html create mode 100644 src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html new file mode 100644 index 0000000000..76e31ecaa5 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/ultrasimple/ultrasimple.html @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs b/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs new file mode 100644 index 0000000000..6c4b65c98c --- /dev/null +++ b/src/Umbraco.Web/PropertyEditors/UltraSimplePropertyEditor.cs @@ -0,0 +1,10 @@ +using Umbraco.Core; +using Umbraco.Core.PropertyEditors; + +namespace Umbraco.Web.PropertyEditors +{ + [PropertyEditor(Constants.PropertyEditors.UltraSimpleEditorAlias, "Ultrasimple editor", "ultrasimple")] + public class UltraSimplePropertyEditor : PropertyEditor + { + } +} \ No newline at end of file diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj index e1747a481f..b4108ad386 100644 --- a/src/Umbraco.Web/Umbraco.Web.csproj +++ b/src/Umbraco.Web/Umbraco.Web.csproj @@ -370,6 +370,7 @@ +