We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 762e1b1 + f2551ea commit d9f1421Copy full SHA for d9f1421
example/common.dart
@@ -14,7 +14,7 @@ Future<void> initViewSourceButton(String script) async {
14
// query the DOM for the view source button, handle clicks
15
document.querySelector('#view-source')?.onClick.listen((_) {
16
// ignore: unsafe_html
17
- final popup = window.open('view_source.html?script=$script', 'View Source');
+ final popup = window.open('https://github.com/SpinlockLabs/github.dart/blob/master/example/$script', 'View Source');
18
String? code;
19
20
var fetched = false;
0 commit comments