From 17e7a2b39321fa94ab41177bd4078469092b6882 Mon Sep 17 00:00:00 2001 From: alex_t_king Date: Wed, 31 Dec 2003 04:05:41 +0000 Subject: [PATCH] Fixed some bugs and added support for the 'Cancel' button when adding a link or image git-svn-id: http://svn.automattic.com/wordpress/trunk@669 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/quicktags.js | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/wp-admin/quicktags.js b/wp-admin/quicktags.js index 60757d0f4..e34bdb917 100644 --- a/wp-admin/quicktags.js +++ b/wp-admin/quicktags.js @@ -157,7 +157,6 @@ function edAddTag(button) { if (edButtons[button].tagEnd != '') { edOpenTags[edOpenTags.length] = button; document.getElementById(edButtons[button].id).value = '/' + document.getElementById(edButtons[button].id).value; - } } @@ -249,7 +248,7 @@ function edToolbar() { function edInsertTag(myField, i) { //IE support if (document.selection) { - myField.focus(); + myField.focus(); sel = document.selection.createRange(); if (sel.text.length > 0) { sel.text = edButtons[i].tagStart + sel.text + edButtons[i].tagEnd; @@ -270,16 +269,14 @@ function edInsertTag(myField, i) { else if (myField.selectionStart || myField.selectionStart == '0') { var startPos = myField.selectionStart; var endPos = myField.selectionEnd; - var cursorPos; + var cursorPos = endPos; if (startPos != endPos) { myField.value = myField.value.substring(0, startPos) + edButtons[i].tagStart + myField.value.substring(startPos, endPos) + edButtons[i].tagEnd + myField.value.substring(endPos, myField.value.length); - cursorPos = endPos - + edButtons[i].tagStart.length - + edButtons[i].tagEnd.length; + cursorPos += edButtons[i].tagStart.length + edButtons[i].tagEnd.length; } else { if (!edCheckOpenTags(i) || edButtons[i].tagEnd == '') { @@ -343,20 +340,24 @@ function edInsertLink(myField, i, defaultValue) { defaultValue = 'http://'; } if (!edCheckOpenTags(i)) { - edButtons[i].tagStart = ''; + var URL = prompt('Enter the URL' ,defaultValue); + if (URL) { + edButtons[i].tagStart = ''; + edInsertTag(myField, i); + } + } + else { + edInsertTag(myField, i); } - edInsertTag(myField, i); } function edInsertImage(myField) { - var myValue = '' 
-	            + prompt('Enter a description of the image', '') 
-	            + ''; - edInsertContent(myField, myValue); + var myValue = prompt('Enter the URL of the image', 'http://'); + if (myValue) { + myValue = '' + prompt('Enter a description of the image', '') 
+				+ ''; + edInsertContent(myField, myValue); + } }