Skip to content

Commit

Permalink
releasing v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RobErskine committed Nov 11, 2021
1 parent 8429726 commit 32399f1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for Craft User Manual

## 2.1.0 - 2021-11-10
- Merging PR from JorgeAnzalo for an optional sidebar [PR #23](https://github.com/hillholliday/Craft-User-Manual/pull/23)
- Merging PR from for a hashed based navigation for long navbars [PR #19](https://github.com/hillholliday/Craft-User-Manual/pull/19)

## v2.0.2 - 2019-02-27
### Updated
- Forcing new version for deprecation issues
Expand Down
1 change: 1 addition & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Defaults to true.
This plugin was inspired by the team over at [70kft](http://70kft.com/) for their work on [Craft-Help](https://github.com/70kft/craft-help). While their plugin is definitely more flexible in terms of writing custom markdown in separate files, we wanted to create something that would make it easier for anyone to edit documentation without making any changes to the server. This works particularly well for larger projects where more than one person (especially non-devs) are writing documentation for how to use the CMS.

## Releases
* **2.1.0** - Merging PRs from [JorgeAnzola](https://github.com/JorgeAnzola) and [sameerast](https://github.com/sameerast)
* **2.0.3** - Forcing updating to plugin store
* **2.0.2** - Merging in [@aaronbushnell](https://github.com/aaronbushnell)'s [fix for incorrect reference to asset bundle](https://github.com/hillholliday/Craft-User-Manual/pull/17).
* **2.0.1** - Merging in [@mgburns](https://github.com/mgburns)' [fix for Craft 3 deprecation warnings](https://github.com/hillholliday/Craft-User-Manual/pull/11).
Expand Down
2 changes: 1 addition & 1 deletion composer.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hillholliday/craft-user-manual",
"description": "Craft User Manual allows developers (or even content editors) to provide CMS documentation using Craft's built-in sections (singles, channels, or structures) to create a `User Manual` or `Help` section directly in the control panel.",
"type": "craft-plugin",
"version": "2.0.5",
"version": "2.1.0",
"keywords": [
"craft",
"cms",
Expand Down
18 changes: 8 additions & 10 deletions src/assetbundles/usermanual/dist/js/UserManual.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@
* @since 2.0.0
*/

$('document').ready(function () {

if(window.location.hash.substr(1)){
$('body').addClass('pe-user-manual');
}
else{
$('#global-header').hide();
}

});
$('document').ready(function () {
if(window.location.hash.substr(1)){
$('body').addClass('pe-user-manual');
}
else{
$('#global-header').hide();
}
});

0 comments on commit 32399f1

Please sign in to comment.