@concretecms/bedrock 1.6.5 → 1.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ const modules = new Map([
14
14
  class PageNotification {
15
15
  constructor() {
16
16
  const notificationsBoxHTML = `
17
- <div class="ccm-notifications-box">
17
+ <div class="ccm-notifications-box ccm-ui">
18
18
  <div class="ccm-notifications-box-header">
19
19
  <div data-bs-toggle="collapse" data-bs-target=".ccm-notifications-box-body" aria-expanded="true" role="button">${ccmi18n.notifications}</div>
20
20
  <a href="#" class="btn-close ccm-notifications-box-close"></a></div>
@@ -176,7 +176,7 @@ window._ = _
176
176
  updateStatus: function(data) {
177
177
  if (data.status == 'ready') {
178
178
  var $form = $('form[data-conversation-form=subscribe]')
179
- $('button').on('click', $form, function(e) {
179
+ $('button.btn-primary').on('click', $form, function(e) {
180
180
  e.preventDefault()
181
181
  e.stopPropagation()
182
182
  $.ajax({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.6.5",
3
+ "version": "1.6.7",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",