Commit d3e997d5ac26fa827bef1c7b73a308ae8a6045c3

Authored by Evandro Jr
1 parent 89774eb1
Exists in master

before floating form

Showing 1 changed file with 6 additions and 19 deletions   Show diff stats
public/comment_paragraph_macro.js
... ... @@ -68,36 +68,23 @@ jQuery(document).ready(function($) {
68 68 }
69 69 rootElement.focus();
70 70 });
71   -
72   -
73   -
  71 +
74 72 $('#comment-bubble').click(function(){
75 73 this.hide();
76 74 $("#comment-bubble").css({top: 0, left: 0, position:'absolute'});
77 75 var url = $("#comment-bubble").data('url');
78 76 var paragraphId = $("#comment-bubble").data("paragraphId");
79 77 console.log(url);
80   - $('.comments_list_toggle_paragraph_0').show();
  78 + $('.comments_list_toggle_paragraph_' + paragraphId).show();
81 79 $.ajax({
82 80 dataType: "script",
83 81 url: url
84 82 }).done(function() {
85   - var button = jQuery('#page-comment-form-' + paragraphId + 'a');
86   - console.log(button);
  83 + var button = jQuery('#page-comment-form-' + paragraphId + ' a')[0];
  84 + //console.log(button);
87 85 button.click();
88   - $.scrollTo(button);
89   - });;
90   -
91   -// $.getJSON(url, function(data) {
92   -// $('.comments_list_toggle_paragraph_0').show();
93   -// //var button = $('div.comment_paragraph_'+ data.paragraph_id + ' a');
94   -// var button = jQuery('#page-comment-form-' + paragraphId + 'a');
95   -// console.log(button);
96   -// button.click();
97   -// $.scrollTo(button);
98   -//
99   -// });
100   -
  86 + //$('body').scrollTo('#page-comment-form-' + paragraphId + ' a');
  87 + });
101 88 });
102 89  
103 90 function processAnchor(){
... ...