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

Side by Side Diff: infra/tools/antibody/static/leaderboard.js

Issue 1235373004: Added script to generate stats on a git checkout (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@new_antibody_db_schema
Patch Set: Rebase Created 5 years, 4 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 $(document).ready(function(){
2
3 $(document).stylesheets[3].disabled = true;
4
5 $('#change_css').onclick=function(){
6 if ($(document).stylesheets[3].disabled) {
7 $(document).stylesheets[3].disabled = false;
8 $(document).stylesheets[2].disabled = true;
9 } else {
10 $(document).stylesheets[3].disabled = true;
11 $(document).stylesheets[2].disabled = false;
12 }
13 };
14 });
OLDNEW
« no previous file with comments | « infra/tools/antibody/static/leaderboard.css ('k') | infra/tools/antibody/static/leaderboard_arcade.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698