diff options
| author | WindowsAddict | 2023-07-15 22:26:09 +0000 |
|---|---|---|
| committer | WindowsAddict | 2023-07-15 22:26:09 +0000 |
| commit | 793097a617882ca746ea458af7246842105b512f (patch) | |
| tree | a099086de80397b43742d402289d659ee3daf372 /_site/site_libs/navigation-1.1 | |
| parent | 16ce1e2c57ebea6fb48dd9e600969694e4e8e220 (diff) | |
| download | massgrave.dev-793097a617882ca746ea458af7246842105b512f.zip | |
Update LTSC link in ARM64 page
Diffstat (limited to '_site/site_libs/navigation-1.1')
| -rw-r--r-- | _site/site_libs/navigation-1.1/codefolding.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_site/site_libs/navigation-1.1/codefolding.js b/_site/site_libs/navigation-1.1/codefolding.js index 97fffb2..66e09df 100644 --- a/_site/site_libs/navigation-1.1/codefolding.js +++ b/_site/site_libs/navigation-1.1/codefolding.js @@ -31,7 +31,7 @@ window.initializeCodeFolding = function(show) { $(this).detach().appendTo(div); // add a show code button right above - var showCodeText = $('<span>' + (showThis ? 'Hide' : 'Code') + '</span>'); + var showCodeText = $('<span>' + (showThis ? 'Hide' : 'Show') + '</span>'); var showCodeButton = $('<button type="button" class="btn btn-default btn-xs btn-secondary btn-sm code-folding-btn pull-right float-right"></button>'); showCodeButton.append(showCodeText); showCodeButton @@ -57,7 +57,7 @@ window.initializeCodeFolding = function(show) { // * Change text // * add a class for intermediate states styling div.on('hide.bs.collapse', function () { - showCodeText.text('Code'); + showCodeText.text('Show'); showCodeButton.addClass('btn-collapsing'); }); div.on('hidden.bs.collapse', function () { |
