summaryrefslogtreecommitdiff
path: root/gstudio/static/gstudio/js/replycomment.js
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/static/gstudio/js/replycomment.js')
-rw-r--r--gstudio/static/gstudio/js/replycomment.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/gstudio/static/gstudio/js/replycomment.js b/gstudio/static/gstudio/js/replycomment.js
new file mode 100644
index 0000000..8e33eba
--- /dev/null
+++ b/gstudio/static/gstudio/js/replycomment.js
@@ -0,0 +1,32 @@
+$.noConflict();
+jQuery(document).ready(function($) {
+ $(".commenteditor").one("click",function() {
+ $("#chart").hide();
+ $("#content").css({"width": "300px",})
+ document.getElementById('gnoweditor').style.visibility="visible";
+ $("#gnoweditor").orgitdown(mySettings);
+ var screentop=$(document).scrollTop();
+ $(".orgitdownContainer").css({"margin-top":screentop,});
+ });
+
+ $(".commentsavecontent").one("click",function(){
+ var org_data = $("#gnoweditor").val();
+
+
+// document.getElementByClass("commentreptext").setAttribute("value",org_data);
+ var elmts = document.getElementsByClassName ("commentreptext");
+ for (var i = 0; i < elmts.length; i++) {
+ elmts[i].setAttribute("value",org_data);
+ }
+ alert(org_data);
+
+ });
+ $(".deleteresponse").one("click",function() {
+ var elmts=document.getElementsByClassName("deleteresponse");
+ alert("hai");
+ alert(elmts.length);
+
+
+
+ });
+});