-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated library versions Small updates + fixed typos in documentation Changed headless to false for demos project Removed justtestlah-demos from parent module Removed unused jitpack repository
- Loading branch information
1 parent
efdf346
commit de067f4
Showing
13 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
/* some formatting hacks */ | ||
$(function() { | ||
$("div.well.sidebar-nav").remove(); | ||
$("body>hr").remove(); | ||
// fix ToC links | ||
$("a").each(function(){ | ||
var oldName=$(this).attr("name"); | ||
if (oldName!=undefined) | ||
{ | ||
var newName=oldName.replace(new RegExp("_", "g"), "-").replace(new RegExp("2[0-9,a-f,A-F]|\\.", "g"),"").toLowerCase(); | ||
$(this).attr("name", newName); | ||
} | ||
var oldName=$(this).attr("name"); | ||
if (oldName!=undefined) | ||
{ | ||
var newName=oldName.replace(new RegExp("_", "g"), "-") | ||
.replace(new RegExp("2[0-9,a-f,A-F]|\\.|:", "g"),"") | ||
.toLowerCase(); | ||
$(this).attr("name", newName); | ||
} | ||
}); | ||
document.title="JustTestLah! (JTL) test framework"; | ||
}); |