From 3d2834dab9979fc59b50d09d5bad69b547915be2 Mon Sep 17 00:00:00 2001 From: jordan Date: Thu, 7 Jul 2011 16:21:02 +0000 Subject: [PATCH] be able to use the cursor caret when using the canned comments feature, include the canned comment to the exact space git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@1112 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- forum/skins/default/media/js/jquery.caret.js | 10 ++++++++ forum/skins/default/media/js/osqa.main.js | 25 ++++++++++++++++---- forum/skins/default/templates/question.html | 1 + 3 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 forum/skins/default/media/js/jquery.caret.js diff --git a/forum/skins/default/media/js/jquery.caret.js b/forum/skins/default/media/js/jquery.caret.js new file mode 100644 index 0000000..d22d511 --- /dev/null +++ b/forum/skins/default/media/js/jquery.caret.js @@ -0,0 +1,10 @@ +/* + * + * Copyright (c) 2010 C. F., Wong (Cloudgen Examplet Store) + * Licensed under the MIT License: + * http://www.opensource.org/licenses/mit-license.php + * + */ +(function(k,e,i,j){k.fn.caret=function(b,l){var a,c,f=this[0],d=k.browser.msie;if(typeof b==="object"&&typeof b.start==="number"&&typeof b.end==="number"){a=b.start;c=b.end}else if(typeof b==="number"&&typeof l==="number"){a=b;c=l}else if(typeof b==="string")if((a=f.value.indexOf(b))>-1)c=a+b[e];else a=null;else if(Object.prototype.toString.call(b)==="[object RegExp]"){b=b.exec(f.value);if(b!=null){a=b.index;c=a+b[0][e]}}if(typeof a!="undefined"){if(d){d=this[0].createTextRange();d.collapse(true); +d.moveStart("character",a);d.moveEnd("character",c-a);d.select()}else{this[0].selectionStart=a;this[0].selectionEnd=c}this[0].focus();return this}else{if(d){c=document.selection;if(this[0].tagName.toLowerCase()!="textarea"){d=this.val();a=c[i]()[j]();a.moveEnd("character",d[e]);var g=a.text==""?d[e]:d.lastIndexOf(a.text);a=c[i]()[j]();a.moveStart("character",-d[e]);var h=a.text[e]}else{a=c[i]();c=a[j]();c.moveToElementText(this[0]);c.setEndPoint("EndToEnd",a);g=c.text[e]-a.text[e];h=g+a.text[e]}}else{g= +f.selectionStart;h=f.selectionEnd}a=f.value.substring(g,h);return{start:g,end:h,text:a,replace:function(m){return f.value.substring(0,g)+m+f.value.substring(h,f.value[e])}}}}})(jQuery,"length","createRange","duplicate"); \ No newline at end of file diff --git a/forum/skins/default/media/js/osqa.main.js b/forum/skins/default/media/js/osqa.main.js index 0c532e3..7d6294f 100644 --- a/forum/skins/default/media/js/osqa.main.js +++ b/forum/skins/default/media/js/osqa.main.js @@ -25,10 +25,6 @@ $('html').ajaxSend(function(event, xhr, settings) { } }); -function canned_comment(post_id, comment) { - $('#comment-' + post_id + '-form textarea').val(comment); -} - var response_commands = { refresh_page: function() { window.location.reload(true) @@ -369,7 +365,28 @@ function end_command(success) { } } +var comment_box_cursor_position = 0; +function canned_comment(post_id, comment) { + textarea = $('#comment-' + post_id + '-form textarea') + + // Get the text from the beginning to the caret + textarea_start = textarea.val().substr(0, comment_box_cursor_position) + + // Get the text from the caret to the end + textarea_end = textarea.val().substr(comment_box_cursor_position, textarea.val().length) + + textarea.val(textarea_start + comment + textarea_endsvn ); +} + $(function() { + $('textarea.commentBox').bind('keydown keyup mousedown mouseup mousemove', function(evt) { + comment_box_cursor_position = $(this).caret().start; + }); + + $('textarea.commentBox').blur(function() { + //alert(comment_box_cursor_position); + }); + $('a.ajax-command').live('click', function(evt) { if (running) return false; diff --git a/forum/skins/default/templates/question.html b/forum/skins/default/templates/question.html index 4583518..aff082b 100644 --- a/forum/skins/default/templates/question.html +++ b/forum/skins/default/templates/question.html @@ -18,6 +18,7 @@ {% block forejs %} {% if not question.nis.closed %} + -- 2.45.2