Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ https://www.youtube.com/watch?v=dJrykKQGDcs

## Changelog ##

### 4.7.1

* FIXED
* Fixed a critical error related to inline annotations on certain themes.
* Resolved shimmering issue for newly uploaded media on the BuddyPress Groups page when GoDAM is active.

### 4.7.0

* ENHANCEMENTS
Expand Down
3 changes: 2 additions & 1 deletion app/assets/js/godam-integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ document.addEventListener('DOMContentLoaded', () => {
initializePopupVideos();
}

if (node.classList?.contains('activity')) {
// Check for either 'activity' or 'groups' class.
if (node.classList?.contains('activity') || node.classList?.contains('groups')) {
setTimeout(() => safeGODAMPlayer(node), 100);
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/assets/js/godam-integration.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/main/RTMedia.php
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ public function enqueue_scripts_styles() {
'rtmedia-emoji-picker',
),
RTMEDIA_VERSION,
args: true
true
);
} else {
wp_enqueue_script(
Expand Down
Loading
Loading