Replaced rawgit.com links with vasl-templates.org.

master
Pacman Ghost 5 years ago
parent 4681315b6f
commit 36d0dcf20f
  1. 9
      README.md
  2. 2
      chapter-h/README.md
  3. 1
      vasl_templates/webapp/static/help/index.html
  4. 12
      vasl_templates/webapp/static/help/main.js

@ -14,7 +14,8 @@ You can find more examples of the program in action [here](https://github.com/pa
### Documentation
* [User Guide](https://rawgit.com/pacman-ghost/vasl-templates/master/vasl_templates/webapp/static/help/index.html?tab=userguide)
* [Installation](https://rawgit.com/pacman-ghost/vasl-templates/master/vasl_templates/webapp/static/help/index.html?tab=installation)
* [Writing your own templates](https://rawgit.com/pacman-ghost/vasl-templates/master/vasl_templates/webapp/static/help/index.html?tab=templatepacks)
* [For developers](https://rawgit.com/pacman-ghost/vasl-templates/master/vasl_templates/webapp/static/help/index.html?tab=fordevelopers)
* [User Guide](https://vasl-templates.org/help?tab=userguide)
* [Installation](https://vasl-templates.org/help?tab=installation)
* [Setting up Chapter H data](https://vasl-templates.org/help?tab=chapterh)
* [Writing your own templates](https://vasl-templates.org/help?tab=templatepacks)
* [For developers](https://vasl-templates.org/help?tab=fordevelopers)

@ -2,4 +2,4 @@
It is possible to include Chapter H notes in your VASL scenarios, but since this is copyrighted material, it is not included in releases, and you will need to set up the data yourself.
The ZIP file in this directory contains placeholder files for the Chapter H notes, refer to the [documentation](https://rawgit.com/pacman-ghost/vasl-templates/master/vasl_templates/webapp/static/help/index.html?tab=chapterh) for instructions on how to set things up.
The ZIP file in this directory contains placeholder files for the Chapter H notes, refer to the [documentation](https://vasl-templates.org/help/?tab=chapterh) for instructions on how to set things up.

@ -498,6 +498,5 @@ The script will compile the program, then package it all up with the necessary s
<script src="jquery-ui/jquery-ui.min.js"></script>
<script src="imageZoom/jquery.imageZoom.min.js"></script>
<script src="main.js"></script>
<script src="../utils.js"></script>
</html>

@ -81,3 +81,15 @@ function select_tab( tab_id )
$( "a[href='#helptabs-" + tab_id + "']" ).click() ;
$( "#helptabs-content" ).animate( { scrollTop: 0 }, 0 ) ;
}
function getUrlParam( param )
{
// look for the specified URL parameter
var url = window.location.search.substring( 1 ) ;
var params = url.split( "&" ) ;
for ( var i=0 ; i < params.length ; i++ ) {
var keyval = params[i].split( "=" ) ;
if ( keyval[0] == param )
return keyval[1] ;
}
}

Loading…
Cancel
Save