|
diff --git a/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.cs b/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.cs
index 60bd0e0f5a..1ffdf75020 100644
--- a/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.cs
+++ b/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.cs
@@ -4,10 +4,14 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
-namespace umbraco.presentation.umbraco.plugins.tinymce3 {
- public partial class insertChar : System.Web.UI.Page {
- protected void Page_Load(object sender, EventArgs e) {
-
- }
- }
+namespace umbraco.presentation.umbraco.plugins.tinymce3
+{
+ public partial class insertChar : System.Web.UI.Page
+ {
+ protected override void OnLoad(EventArgs e)
+ {
+ base.OnLoad(e);
+ ClientLoader.DataBind();
+ }
+ }
}
diff --git a/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.designer.cs b/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.designer.cs
index 42cc8f7470..954b28301c 100644
--- a/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.designer.cs
+++ b/umbraco/presentation/umbraco/plugins/tinymce3/insertChar.aspx.designer.cs
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:2.0.50727.3053
+// Runtime Version:2.0.50727.3082
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -12,5 +12,32 @@ namespace umbraco.presentation.umbraco.plugins.tinymce3 {
public partial class insertChar {
+
+ ///
+ /// ClientLoader control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::umbraco.presentation.ClientDependency.Controls.ClientDependencyLoader ClientLoader;
+
+ ///
+ /// JsInclude4 control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::umbraco.presentation.ClientDependency.Controls.JsInclude JsInclude4;
+
+ ///
+ /// JsInclude1 control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::umbraco.presentation.ClientDependency.Controls.JsInclude JsInclude1;
}
}
diff --git a/umbraco/presentation/umbraco/plugins/tinymce3/insertImage.aspx b/umbraco/presentation/umbraco/plugins/tinymce3/insertImage.aspx
index 49d8b7b635..3263f748cc 100644
--- a/umbraco/presentation/umbraco/plugins/tinymce3/insertImage.aspx
+++ b/umbraco/presentation/umbraco/plugins/tinymce3/insertImage.aspx
@@ -1,24 +1,12 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="insertImage.aspx.cs" Inherits="umbraco.presentation.plugins.tinymce3.insertImage" %>
<%@ Register TagPrefix="ui" Namespace="umbraco.uicontrols" Assembly="controls" %>
+<%@ Register TagPrefix="umb" Namespace="umbraco.presentation.ClientDependency.Controls" Assembly="umbraco.presentation.ClientDependency" %>
{#advimage_dlg.dialog_title}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -80,6 +70,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
|