Skip to content

Commit dab4a56

Browse files
committed
Log viewer can now show transient data, fetch improvements, MS Clarity support
1 parent 1156179 commit dab4a56

File tree

22 files changed

+184
-141
lines changed

22 files changed

+184
-141
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.12.650",
5+
"version": "13.1.23.611",
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.12.650'; //Thursday, June 12, 2025 3:35:51 PM
3+
const NEBULA_VERSION = 'v13.1.23.611'; //Monday, June 23, 2025 2:40:11 PM
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: 2 additions & 2 deletions
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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,10 @@ nebula.developerMetaboxes = function(){
7676

7777
//Log Viewer
7878
if ( jQuery('div#nebula_log_viewer').length ){
79-
//Automatically scroll to the bottom so the latest entries are visible
80-
jQuery('#log-scroll-wrapper').scrollTop(jQuery('#log-scroll-wrapper')[0].scrollHeight);
79+
//Automatically scroll to the bottom of file contents so the latest entries are visible
80+
if ( !jQuery('#log-contents.transient-data').length ){
81+
jQuery('#log-scroll-wrapper').scrollTop(jQuery('#log-scroll-wrapper')[0].scrollHeight);
82+
}
8183

8284
jQuery('#log-contents .log-line .log-toggle').on('click', function(){
8385
let $logLine = jQuery(this).parents('.log-line');

0 commit comments

Comments
 (0)