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

Unified Diff: client/web/app.dart

Issue 60233005: Remove WIP label, make categories always expanded, move build number down. (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Go back to collapsing when small, panel and minimap vanish at the same time column widens Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/web/category.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/web/app.dart
diff --git a/client/web/app.dart b/client/web/app.dart
index eda036d12670be7ab80edb6c17ace6ca22498b3a..f1c739829d4a1a6bc6297ef2ccc6c9ca8ed799b5 100644
--- a/client/web/app.dart
+++ b/client/web/app.dart
@@ -237,7 +237,7 @@ class Viewer extends Observable {
return lib.load();
}
- Future<List<Item>> getMember(Library lib, DocsLocation location) {
+ Future<List<Item>> getMember(lib, DocsLocation location) {
var member = lib.memberNamed(location.memberName);
if (member == null) return new Future.value([lib, null]);
return member.load().then((mem) => new Future.value([lib, member]));
« no previous file with comments | « no previous file | client/web/category.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698