Changeset 136916 in webkit


Ignore:
Timestamp:
Dec 6, 2012, 6:30:17 PM (12 years ago)
Author:
ojan@chromium.org
Message:

Review page is super flakey now
https://bugs.webkit.org/show_bug.cgi?id=104331

Committing without review since this is breaking the code review tool.

remove is only shipping in Chromium. Use jQuery's remove instead.

  • PrettyPatch/PrettyPatch.rb:
  • code-review.js:
Location:
trunk/Websites/bugs.webkit.org
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r136783 r136916  
     12012-12-06  Ojan Vafai  <ojan@chromium.org>
     2
     3        Review page is super flakey now
     4        https://bugs.webkit.org/show_bug.cgi?id=104331
     5
     6        Committing without review since this is breaking the code review tool.
     7
     8        remove is only shipping in Chromium. Use jQuery's remove instead.
     9
     10        * PrettyPatch/PrettyPatch.rb:
     11        * code-review.js:
     12
    1132012-12-05  Ojan Vafai  <ojan@chromium.org>
    214
  • trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb

    r136783 r136916  
    507507</style>
    508508<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    509 <script src="code-review.js?version=45"></script>
     509<script src="code-review.js?version=46"></script>
    510510</head>
    511511EOF
  • trunk/Websites/bugs.webkit.org/code-review.js

    r136783 r136916  
    11611161    classesToRemove.forEach(function(className) {
    11621162      forEachNode(fragment.querySelectorAll('.' + className), function(node) {
    1163         node.remove();
     1163        $(node).remove();
    11641164      });
    11651165    });
     
    11891189
    11901190    setTimeout(function() {
    1191       container.remove();
     1191      $(container).remove();
    11921192      selection.removeAllRanges();
    11931193      selection.addRange(range);
Note: See TracChangeset for help on using the changeset viewer.