~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/templates/bugtask-index.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-11-11 17:05:44 UTC
  • mfrom: (14251.1.3 remove-flag-bug-886089)
  • Revision ID: launchpad@pqm.canonical.com-20111111170544-oyi6k40yu9w2at69
[r=gmb][bug=886089] Remove all references to the
 bugs.batched_comment_loading feature flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
            });
33
33
         });
34
34
      </script>
35
 
      <tal:if
36
 
        condition="request/features/bugs.batched_comment_loading.enabled">
37
 
      <script type="text/javascript">
38
 
          var batched_comment_loading_enabled = true;
39
 
      </script>
40
 
      </tal:if>
41
 
      <tal:else
42
 
        condition="not: request/features/bugs.batched_comment_loading.enabled">
43
 
      <script type="text/javascript">
44
 
          var batched_comment_loading_enabled = false;
45
 
      </script>
46
 
      </tal:else>
47
35
      <style type="text/css">
48
36
        /* Align the 'add comment' link to the right of the comment box. */
49
37
        #add-comment-form textarea { width: 100%; }
313
301
                view_all_href">add a comment</a>.
314
302
            </tal:what-next>
315
303
          </div>
316
 
          <tal:if
317
 
            condition="request/features/bugs.batched_comment_loading.enabled">
318
 
              <tal:logged-in condition="view/user">
319
 
                <div id="add-comment-form-container" class="hidden">
320
 
                  <metal:comment-form
321
 
                      metal:use-macro="context/@@bugcomment-macros/comment-form" />
322
 
                </div>
323
 
              </tal:logged-in>
324
 
          </tal:if>
 
304
            <tal:logged-in condition="view/user">
 
305
              <div id="add-comment-form-container" class="hidden">
 
306
                <metal:comment-form
 
307
                    metal:use-macro="context/@@bugcomment-macros/comment-form" />
 
308
              </div>
 
309
            </tal:logged-in>
325
310
        </tal:comment-list-truncated>
326
311
      </tal:comments>
327
312