Updates the content type editor to have the list view customization inline instead of in a dialog.

This commit is contained in:
Shannon
2014-10-02 18:52:38 +10:00
parent 3400c52e45
commit c8264cff1e
18 changed files with 258 additions and 155 deletions

View File

@@ -574,7 +574,7 @@ namespace umbraco.editorControls.tinyMCE3
appendValue = ", '" + cmd.Value + "'";
_mceButtons.Add(cmd.Priority, cmd.Command);
_buttons.Add(cmd.Priority,
new editorButton(cmd.Alias, ui.Text("buttons", cmd.Alias, null), cmd.Icon,
new editorButton(cmd.Alias, ui.Text("buttons", cmd.Alias), cmd.Icon,
"tinyMCE.execInstanceCommand('" + ClientID + "', '" +
cmd.Command + "', " + cmd.UserInterface + appendValue + ")"));
}