Skip to content

Commit 35fcd2e

Browse files
committed
Log viewer updates, user explorer analytics enhancement
1 parent dab4a56 commit 35fcd2e

File tree

18 files changed

+110
-103
lines changed

18 files changed

+110
-103
lines changed

.github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nebula-wp",
33
"title": "Nebula",
44
"description": "Advanced Starter WordPress Theme for Developers",
5-
"version": "13.1.23.611",
5+
"version": "13.1.25.401",
66
"homepage": "https://gearside.com/nebula/",
77
"repository": {
88
"type": "git",

Nebula-Child/assets/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Nebula-Child/resources/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//BEGIN automated edits. These will be automatically overwritten.
22
const THEME_NAME = 'nebula-child';
3-
const NEBULA_VERSION = 'v13.1.23.611'; //Monday, June 23, 2025 2:40:11 PM
3+
const NEBULA_VERSION = 'v13.1.25.401'; //Wednesday, June 25, 2025 9:37:31 AM
44
const OFFLINE_URL = 'https://nebula.gearside.com/offline/';
55
const OFFLINE_IMG = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/offline.svg';
66
const META_ICON = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/meta/android-chrome-512x512.png';

Nebula-Child/style.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/critical.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/login.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/pre.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/admin-modules/dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ nebula.developerMetaboxes = function(){
7777
//Log Viewer
7878
if ( jQuery('div#nebula_log_viewer').length ){
7979
//Automatically scroll to the bottom of file contents so the latest entries are visible
80-
if ( !jQuery('#log-contents.transient-data').length ){
80+
if ( !jQuery('#log-contents.transient-data').length && jQuery('#log-scroll-wrapper').length ){
8181
jQuery('#log-scroll-wrapper').scrollTop(jQuery('#log-scroll-wrapper')[0].scrollHeight);
8282
}
8383

assets/js/modules/forms.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ nebula.updateFormFlow = function(formID, field, info = ''){
488488
nebula.formFlow[formID] = formID + ': ' + field + info; //Otherwise start a new form flow string beginning with the form ID
489489
}
490490

491-
//Set the user property. @todo "Nebula" 0: When GA4 allows session-scoped custom dimensions, update this to session scope!
491+
//Set the user property. This is not entirely necessary since this gets included as an event property with the submission success.
492492
gtag('set', 'user_properties', {
493493
form_flow: nebula.formFlow[formID]
494494
});

0 commit comments

Comments
 (0)