")
.css({"position": "fixed",
"z-index": 2000,
"left": "50%", "top": "50%", "background": "rgb(0, 0, 0)",
"margin-top": -1 * Math.round(Wysiwyg.defaults.formHeight / 2),
"margin-left": -1 * Math.round(Wysiwyg.defaults.formWidth / 2)})
.html(formImageHtml);
elements = self.makeForm(elements, img);
$("input:submit", elements).click(function (event) {
self.processInsert(elements, Wysiwyg, img);
$(elements).remove();
return false;
});
$("input:reset", elements).click(function (event) {
if ($.browser.msie)
Wysiwyg.ui.returnRange();
$(elements).remove();
return false;
});
$("body").append(elements);
elements.click(function(e) {
e.stopPropagation();
});
}
}
$(Wysiwyg.editorDoc).trigger("editorRefresh.wysiwyg");
},
processInsert: function (context, Wysiwyg, img) {
var image,
url = $('input[name="src"]', context).val(),
title = $('input[name="imgtitle"]', context).val(),
description = $('input[name="description"]', context).val(),
width = $('input[name="width"]', context).val(),
height = $('input[name="height"]', context).val(),
styleFloat = $('select[name="float"]', context).val(),
style = [],
found,
baseUrl;
if (Wysiwyg.options.controlImage.forceRelativeUrls) {
baseUrl = window.location.protocol + "//" + window.location.hostname;
if (0 === url.indexOf(baseUrl))
url = url.substr(baseUrl.length);
}
if (img.self) {
// to preserve all img attributes
$(img.self).attr("src", url)
.attr("title", title)
.attr("alt", description)
.css("float", styleFloat);
if (width.toString().match(/^[0-9]+(px|%)?$/))
$(img.self).css("width", width);
else
$(img.self).css("width", "");
if (height.toString().match(/^[0-9]+(px|%)?$/))
$(img.self).css("height", height);
else
$(img.self).css("height", "");
Wysiwyg.saveContent();
} else {
found = width.toString().match(/^[0-9]+(px|%)?$/);
if (found) {
if (found[1])
style.push("width: " + width + ";");
else
style.push("width: " + width + "px;");
}
found = height.toString().match(/^[0-9]+(px|%)?$/);
if (found) {
if (found[1])
style.push("height: " + height + ";");
else
style.push("height: " + height + "px;");
}
if (styleFloat.length > 0)
style.push("float: " + styleFloat + ";");
if (style.length > 0)
style = ' style="' + style.join(" ") + '"';
image = "

";
Wysiwyg.insertHtml(image);
}
},
makeForm: function (form, img) {
form.find("input[name=src]").val(img.src);
form.find("input[name=imgtitle]").val(img.title);
form.find("input[name=description]").val(img.alt);
form.find('input[name="width"]').val(img.width);
form.find('input[name="height"]').val(img.height);
form.find('img').attr("src", img.src);
form.find('img').bind("load", function () {
if (form.find('img').attr("naturalWidth")) {
form.find('input[name="naturalWidth"]').val(form.find('img').attr("naturalWidth"));
form.find('input[name="naturalHeight"]').val(form.find('img').attr("naturalHeight"));
}
});
form.find("input[name=src]").bind("change", function () {
form.find('img').attr("src", this.value);
});
return form;
}
};
$.wysiwyg.insertImage = function (object, url, attributes) {
return object.each(function () {
var Wysiwyg = $(this).data("wysiwyg"),
image,
attribute;
if (!Wysiwyg)
return this;
if (!url || url.length === 0)
return this;
if ($.browser.msie)
Wysiwyg.ui.focus();
if (attributes) {
Wysiwyg.editorDoc.execCommand("insertImage", false, "#jwysiwyg#");
image = Wysiwyg.getElementByAttributeValue("img", "src", "#jwysiwyg#");
if (image) {
image.src = url;
for (attribute in attributes) {
if (attributes.hasOwnProperty(attribute))
image.setAttribute(attribute, attributes[attribute]);
}
}
} else
Wysiwyg.editorDoc.execCommand("insertImage", false, url);
Wysiwyg.saveContent();
$(Wysiwyg.editorDoc).trigger("editorRefresh.wysiwyg");
return this;
});
};
})(jQuery);