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

Unified Diff: lib/dartdoc/client-shared.dart

Issue 10701091: Dartdoc and Apidoc updated to use dart2js through the mirror system. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed cf. rnystrom's comments. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: lib/dartdoc/client-shared.dart
diff --git a/lib/dartdoc/client-shared.dart b/lib/dartdoc/client-shared.dart
index 9b3ab21c7cba27d5ff46dbd068421c193917c9e5..7d9db1576d5528740b8d11d9bbcaec29c7759fb5 100644
--- a/lib/dartdoc/client-shared.dart
+++ b/lib/dartdoc/client-shared.dart
@@ -24,7 +24,7 @@ enableCodeBlocks() {
} else {
// Syntax highlight.
if (!pre.classes.contains('formatted')) {
- pre.innerHTML = classifySource(new frog.SourceFile('', pre.text));
+ pre.innerHTML = classifySource(pre.text);
pre.classes.add('formatted');
};
pre.classes.add('expanded');

Powered by Google App Engine
This is Rietveld 408576698