Changeset 136587 in webkit
- Timestamp:
- Dec 4, 2012, 4:06:02 PM (12 years ago)
- Location:
- trunk/Websites/bugs.webkit.org
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Websites/bugs.webkit.org/ChangeLog
r136578 r136587 1 2012-12-04 Ojan Vafai <ojan@chromium.org> 2 3 Use sticky positioning for the code review toolbar 4 https://bugs.webkit.org/show_bug.cgi?id=104056 5 6 Reviewed by Adam Barth. 7 8 This simplifies the code and gives a nicer user-experience. 9 Also, while here, I fixed up the CSS to not have toolbar items 10 overlap when you make the window too small. 11 12 * PrettyPatch/PrettyPatch.rb: 13 * code-review-test.html: 14 * code-review.js: 15 1 16 2012-12-04 Ojan Vafai <ojan@chromium.org> 2 17 -
trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb
r130276 r136587 319 319 height: 2em; 320 320 max-width: 100%; 321 min-width: 200px; 321 322 } 322 323 … … 335 336 } 336 337 337 body {338 margin-bottom: 40px;339 }340 341 338 #toolbar { 342 display: -webkit- box;343 display: -moz- box;339 display: -webkit-flex; 340 display: -moz-flex; 344 341 padding: 3px; 345 342 left: 0; … … 349 346 font-family: sans-serif; 350 347 position: fixed; 351 }352 353 #toolbar.anchored {354 348 bottom: 0; 355 349 } … … 452 446 453 447 .overallComments { 454 -webkit- box-flex: 1;455 -moz- box-flex: 1;448 -webkit-flex: 1; 449 -moz-flex: 1; 456 450 margin-right: 3px; 457 451 } … … 479 473 border: none; 480 474 vertical-align: middle; 481 }482 483 .pseudo_resize_event_iframe {484 height: 10%;485 width: 10%;486 position: absolute;487 top: -11%;488 475 } 489 476 -
trunk/Websites/bugs.webkit.org/code-review-test.html
r136578 r136587 51 51 '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.h">header</a>' + 52 52 '<a target="_blank" href="http://trac.webkit.org/browser/trunk/foo/bar.cpp/qux.mm?annotate=blame">annotate</a>' + 53 '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.mm">revision log</a> 54 '); 53 '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.mm">revision log</a>'); 55 54 56 55 var links = tracLinks('foo/bar.h', ''); -
trunk/Websites/bugs.webkit.org/code-review.js
r136578 r136587 1061 1061 } 1062 1062 1063 function onBodyResize() {1064 updateToolbarAnchorState();1065 }1066 1067 function updateToolbarAnchorState() {1068 var toolbar = $('#toolbar');1069 // Unanchor the toolbar and then see if it's bottom is below the body's bottom.1070 toolbar.toggleClass('anchored', false);1071 var toolbar_bottom = toolbar.offset().top + toolbar.outerHeight();1072 var should_anchor = toolbar_bottom >= document.body.clientHeight;1073 toolbar.toggleClass('anchored', should_anchor);1074 }1075 1076 1063 function diffLinksHtml() { 1077 1064 return '<a href="javascript:" class="unify-link">unified</a>' + … … 1092 1079 '<button id="post_comments">Publish</button> ' + 1093 1080 '</span>' + 1081 '<div class="clear_float"></div>' + 1094 1082 '</div>' + 1095 1083 '<div class="autosave-state"></div>' + … … 1098 1086 $('.overallComments textarea').bind('click', openOverallComments); 1099 1087 $('.overallComments textarea').bind('input', handleOverallCommentsInput); 1088 1089 var toolbar = $('#toolbar'); 1090 toolbar.css('position', '-webkit-sticky'); 1091 var supportsSticky = toolbar.css('position') == '-webkit-sticky'; 1092 document.body.style.marginBottom = supportsSticky ? 0 : '40px'; 1100 1093 } 1101 1094 … … 1131 1124 $('#reviewform').bind('load', handleReviewFormLoad); 1132 1125 1133 // Create a dummy iframe and monitor resizes in it's contentWindow to detect when the top document's body changes size.1134 // FIXME: Should we setTimeout throttle these?1135 var resize_iframe = $('<iframe class="pseudo_resize_event_iframe"></iframe>');1136 $(document.body).append(resize_iframe);1137 // Handle the event on a timeout to avoid crashing Firefox.1138 $(resize_iframe[0].contentWindow).bind('resize', function() { setTimeout(onBodyResize, 0)});1139 1140 updateToolbarAnchorState();1141 1126 loadDiffState(); 1142 1127 generateFileDiffResizeStyleElement();
Note:
See TracChangeset
for help on using the changeset viewer.