Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1023)

Side by Side Diff: gm/rebaseline_server/static/utils.js

Issue 856103002: Revert "Revert "delete old things!"" (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 function make_results_header_sticky( ) {
2 element = $(".results-header-actions");
3 var pos = element.position();
4 $(window).scroll( function() {
5 var windowPos = $(window).scrollTop();
6 if (windowPos > pos.top) {
7 element.addClass("sticky");
8 } else {
9 element.removeClass("sticky");
10 }
11 });
12 }
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/new/partials/rebaseline-view.html ('k') | gm/rebaseline_server/static/view.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698