ultrasimple picker stub

This commit is contained in:
perploug
2013-10-10 14:09:57 +02:00
parent 9514654ca4
commit faaa408201
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
<textarea ng-model="model.value" id="{{model.alias}}" name="textarea" rows="10" class="umb-editor umb-textarea umb-ultrasimple" val-server="value"></textarea>
<span class="help-inline" val-msg-for="textarea" val-toggle-msg="valServer"></span>

View File

@@ -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
{
}
}

View File

@@ -370,6 +370,7 @@
<Compile Include="PropertyEditors\RadioButtonsPropertyEditor.cs" />
<Compile Include="PropertyEditors\RichTextPreValueController.cs" />
<Compile Include="PropertyEditors\RichTextPreValueEditor.cs" />
<Compile Include="PropertyEditors\UltraSimplePropertyEditor.cs" />
<Compile Include="PropertyEditors\TagsPropertyEditor.cs" />
<Compile Include="PropertyEditors\UserPickerPropertyEditor.cs" />
<Compile Include="PropertyEditors\ValueListPreValueEditor.cs" />