Skip to content

Commit c8ef8c4

Browse files
authored
DOC-296: Analytics.js updates [netlify-ignore]
Formatting, mostly.
1 parent 5ab056d commit c8ef8c4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/connections/sources/catalog/libraries/website/javascript/troubleshooting.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Any Analytics.js methods may be executed manually. Use the Network tab to inspec
88

99
## Are you loading Analytics.js?
1010

11-
Open the Javascript console and enter `analytics`. Does it return an object, as seen below?
11+
Open the JavaScript console and enter `analytics`. Does it return an object, as seen below?
1212

1313
![Returning analytics object](images/VOsmoAB.gif)
1414

@@ -30,11 +30,11 @@ ENV === 'production' ? writeKey = 'A' : writeKey = 'B';
3030

3131
## Do you see events appear in your debugger?
3232

33-
When you reload the page, does your debugger show a new [`page`](/docs/connections/spec/page) and an [`identify`](/docs/connections/spec/identify) call? You can also check the Javascript console in the browser and manually fire an `identify` call as such, which would show up in the debugger.
33+
When you reload the page, does your debugger show a new [`page`](/docs/connections/spec/page) and an [`identify`](/docs/connections/spec/identify) call? You can also check the JavaScript console in the browser and manually fire an `identify` call as such, which would show up in the debugger.
3434

3535
![Making an identify call](images/7Ymnh2S.gif)
3636

37-
If the call doesn't appear in the debugger, open up the Javascript console and check the Network tab to see if the outbound web services requests are being initiated:
37+
If the call doesn't appear in the debugger, open up the JavaScript console and check the Network tab to see if the outbound web services requests are being initiated:
3838

3939
![Checking for calls in the network tab](images/d8CmIY2.png)
4040

@@ -43,7 +43,7 @@ In the above, the `p` is a [`page`](/docs/connections/spec/page) call and the `i
4343

4444
## Is data being transmitted to your third-party destinations?
4545

46-
Some destinations send data directly from the website to their servers. You can check the Network tab in your Javascript console to see the outbound web services requests being initiated.
46+
Some destinations send data directly from the website to their servers. You can check the Network tab in your JavaScript console to see the outbound web services requests being initiated.
4747

4848
In the below image, we use Google Analytics as an example. Our `page` call forms an outbound request that looks like this:
4949

@@ -65,9 +65,9 @@ Examples of domains on the Public Suffix List that are common in troubleshooting
6565
- `*.appspot.com`
6666

6767

68-
## How do I open the Javascript console in your debugger?
68+
## How do I open the JavaScript console in your debugger?
6969

70-
The Javascript console reveals all requests, outbound and inbound, to your browser. Additionally, you may execute valid Javascript.
70+
The JavaScript console reveals all requests, outbound and inbound, to your browser. Additionally, you may execute valid JavaScript.
7171

7272
- **Chrome**: `COMMAND+OPTION+J` (Mac) or `CTRL+SHIFT+J` (Windows).
7373
- **Firefox**: `COMMAND+OPTION+K` (Mac) or `CTRL+SHIFT+K` (Windows) and then click on the **Console** tab.
@@ -83,7 +83,7 @@ Yes, 32KB per message.
8383
In the event that Analytics.js does not load, callbacks passed into your API calls do not fire. This is as designed, because the purpose of callbacks are to provide an estimate that the event was delivered and if the library never loads, the events won't be delivered.
8484

8585
## Why do I see a network request to `/m`?
86-
In May 2018, we're rolling out a change to Analytics.js that allows us to collect client side performance metrics in Analytics.js. This includes metrics such as:
86+
In May 2018, we rolled out a change to Analytics.js that allows us to collect client side performance metrics in Analytics.js. This includes metrics such as:
8787

8888
- When client side integrations are initialized and when they fail
8989
- When messages are sent to client side integrations and when they fail

0 commit comments

Comments
 (0)