Skip to content

Commit

Permalink
Fixes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertPeek committed May 26, 2022
1 parent a82c932 commit 6f6dd9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ This sets the top and left position of the menu item relative to its container.
````

----------------------------
**Version number:** 4.1.1
**Version number:** 4.1.2
**Framework versions:** 5+
**Author / maintainer:** City and Guilds Kineo [cgkineo/adapt-hotspot-menu](https://github.com/cgkineo/adapt-hotspot-menu) / DeltaNet
**RTL support:** yes
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adapt-hotspot-menu-audio",
"version": "4.1.1",
"version": "4.1.2",
"framework": ">=5",
"homepage": "https://github.com/deltanet/adapt-hotspot-menu-audio",
"displayName": "Hotspot Menu",
Expand Down
2 changes: 1 addition & 1 deletion js/adapt-hotspot-hotspotItemView.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ define([
});

children.forEach(function(article, index) {
if (article.get('_assessment')._isEnabled) {
if (article.get('_assessment') && article.get('_assessment')._isEnabled) {
that.model.set('_assessment', true);
numAssessments++;

Expand Down

0 comments on commit 6f6dd9b

Please sign in to comment.