Skip to content

Commit 55325e5

Browse files
committed
JS bugfixes, Device Detector update, new debug log function
1 parent 74a1fc1 commit 55325e5

File tree

23 files changed

+666
-135
lines changed

23 files changed

+666
-135
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": "7.11.23",
5+
"version": "7.11.30",
66
"homepage": "https://gearside.com/nebula/",
77
"repository": {
88
"type": "git",

Nebula-Child/resources/sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//BEGIN automated edits. These will be automatically overwritten.
22
var THEME_NAME = 'nebula-child';
3-
var NEBULA_VERSION = 'v7.11.23.6911'; //Thursday, April 23, 2020 8:32:20 AM
3+
var NEBULA_VERSION = 'v7.11.30.4167'; //Thursday, April 30, 2020 10:02:31 AM
44
var OFFLINE_URL = 'https://gearside.com/nebula/offline/';
55
var OFFLINE_IMG = 'https://gearside.com/nebula/wp-content/themes/Nebula-master/assets/img/offline.svg';
66
var OFFLINE_GA_DIMENSION = 'cd2';
@@ -10,7 +10,7 @@ var HOME_URL = 'https://gearside.com/nebula/';
1010
var START_URL = 'https://gearside.com/nebula/?utm_source=pwa'; //@todo "Nebula" 0: How do we append ?utm_source=pwa to this without causing an additional resource request to cache it?
1111
//END automated edits
1212

13-
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js'); //https://developers.google.com/web/tools/workbox/guides/get-started
13+
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.3/workbox-sw.js'); //https://developers.google.com/web/tools/workbox/guides/get-started
1414
workbox.setConfig({debug: false}); //https://developers.google.com/web/tools/workbox/guides/troubleshoot-and-debug
1515

1616
//@todo "Nebula" 0: If ?debug is present in the URL on load, dump the entire cache and unregister (or update) the SW completely

Nebula-Child/style.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/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/nebula.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1404,7 +1404,7 @@ nebula.eventTracking = function(){
14041404
}
14051405

14061406
ga('send', 'exception', {'exDescription': '(JS) AJAX Error (' + jqXHR.status + '): ' + errorMessage + ' on ' + settings.url, 'exFatal': true});
1407-
window.dataLayer.push({'event': 'nebula-ajax-error', 'nebula-event': thisEvent});
1407+
window.dataLayer.push({'event': 'nebula-ajax-error', 'nebula-event': errorMessage});
14081408
nebula.nv('event', 'AJAX Error');
14091409
});
14101410

@@ -1416,7 +1416,7 @@ nebula.eventTracking = function(){
14161416
}
14171417

14181418
ga('send', 'exception', {'exDescription': '(JS) ' + errorMessage, 'exFatal': false}); //Is there a better way to detect fatal vs non-fatal errors?
1419-
window.dataLayer.push({'event': 'nebula-window-error', 'nebula-event': thisEvent});
1419+
window.dataLayer.push({'event': 'nebula-window-error', 'nebula-event': errorMessage});
14201420
nebula.nv('event', 'JavaScript Error');
14211421
}
14221422

assets/scss/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Description: Nebula is a springboard WordPress theme framework for developers. Like other WordPress startup themes, it has custom functionality built-in (like shortcodes, styles, and JS/PHP functions), but unlike other themes Nebula is not meant for the end-user.
55
Author: Pinckney Hugo Group
66
Author URI: http://www.pinckneyhugo.com
7-
Version: 7.11.23.3559
7+
Version: 7.11.30.4169
88
License: GNU General Public License v2.0 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, threaded-comments, theme-options, sticky-post, post-formats, microformats, full-width-template, front-page-post-form, flexible-header, featured-images, featured-image-header, editor-style, custom-menu, custom-colors, accessibility-ready

inc/data/nebula_theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.11.23.6911",
2+
"version": "7.11.30.4167",
33
"details_url": "https://github.com/chrisblakley/Nebula/commits/master",
44
"download_url": "https://github.com/chrisblakley/Nebula/archive/master.zip"
55
}

0 commit comments

Comments
 (0)