mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #25330 from jacobhammons/doc-updates
update latest version to 2015.5.3, bug fix in help system
This commit is contained in:
commit
01dfa10dee
3 changed files with 3 additions and 3 deletions
2
doc/_themes/saltstack2/layout.html
vendored
2
doc/_themes/saltstack2/layout.html
vendored
|
@ -21,7 +21,7 @@
|
|||
|
||||
{% set script_files = [
|
||||
'_static/js/core.min.js',
|
||||
'_static/js/webhelp.min_v1.4.js',
|
||||
'_static/js/webhelp.min_v1.4.1.js',
|
||||
] %}
|
||||
|
||||
{% set css_files = [
|
||||
|
|
|
@ -11,7 +11,7 @@ $( document ).ready(function() {
|
|||
|
||||
/*insert links to module functions*/
|
||||
if ($( 'a.current' ).length && $( 'dt .headerlink' ).length ) {
|
||||
if (!window.location.href.indexOf('/ref/cli/')) {
|
||||
if (window.location.href.indexOf('/ref/cli/') == -1) {
|
||||
var tgt = $( 'a.current' );
|
||||
tgt.after('<ul id="function-list"></ul>');
|
||||
$('dt .headerlink').each(function(idx, elem) {
|
|
@ -162,7 +162,7 @@ project = 'Salt'
|
|||
copyright = '2015 SaltStack, Inc.'
|
||||
|
||||
version = salt.version.__version__
|
||||
latest_release = '2015.5.2' # latest release
|
||||
latest_release = '2015.5.3' # latest release
|
||||
previous_release = '2014.7.6' # latest release from previous branch
|
||||
previous_release_dir = '2014.7' # path on web server for previous branch
|
||||
build_type = 'develop' # latest, previous, develop
|
||||
|
|
Loading…
Add table
Reference in a new issue