We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c53fddf commit b05dbbeCopy full SHA for b05dbbe
1 file changed
views/library_build_results.pug
@@ -66,8 +66,15 @@ block prepend content
66
| });
67
| }
68
script
69
- | window.repo_owner = "fmtlib";
70
- | window.repo_name = "fmt"
+ | if ("#{lib.name}" === "fmt") {
+ | window.repo_owner = "fmtlib";
71
+ | window.repo_name = "fmt"
72
+ | } else if ("#{lib.name}" === "beman_iterator_interface") {
73
+ | window.repo_owner = "bemanproject";
74
+ | window.repo_name = "iterator_interface"
75
+ | } else {
76
+ | console.log("Library not yet supported");
77
+ | }
78
| window.lib_name = "#{lib.name}";
79
| window.lib_version = "#{lib.version}";
80
script(src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous")
0 commit comments