DO NOT D,OWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
File cleanup, removed resx files, moved all files tagged for deletion to umbraco.Legacy project. [TFS Changeset #57568]
This commit is contained in:
23
components/editorControls/wysiwyg/editorButton.cs
Normal file
23
components/editorControls/wysiwyg/editorButton.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace umbraco.editorControls.wysiwyg
|
||||
{
|
||||
public class editorButton
|
||||
{
|
||||
public string imageUrl;
|
||||
public string onClickCommand;
|
||||
public string alttag;
|
||||
public string id;
|
||||
|
||||
public editorButton(string Id, string AltTag, string ImageUrl, string OnClickCommand)
|
||||
{
|
||||
id = Id;
|
||||
alttag = AltTag;
|
||||
imageUrl = ImageUrl;
|
||||
onClickCommand = OnClickCommand;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user