Skip to content

Commit 711d60c

Browse files
committed
Add more comments
1 parent 277a866 commit 711d60c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/includes/_methods.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please see the <a href="#event-subscriptions">specific event documentation</a> f
2020
2121
```javascript
2222
(function(WIAPI) {
23-
var API = new WIAPI('test-integration');
23+
var API = new WIAPI('test-integration'); // Note: Replace 'test-integration' with your actual integration identifier.
2424
API.insertCallToAction('button', 'value-a-trade', function(meta) {
2525
return {
2626
"type": "default",
@@ -109,7 +109,7 @@ After creating the callback object, you must then return it for the API to creat
109109
(function(WIAPI) {
110110

111111
// Initialize an instance of the API
112-
var API = new WIAPI('test-integration');
112+
var API = new WIAPI('test-integration'); // Note: Replace 'test-integration' with your actual integration identifier.
113113

114114
// Receive a notification whenever vehicle data is updated on the page (or a new page is loaded).
115115
API.subscribe('vehicle-data-updated-v1', function(ev) {
@@ -196,7 +196,7 @@ This acts as an event subscription, so as the application displays new vehicles
196196
(function(WIAPI) {
197197

198198
// Initialize an instance of the API
199-
var API = new WIAPI('test-integration');
199+
var API = new WIAPI('test-integration'); // Note: Replace 'test-integration' with your actual integration identifier.
200200

201201
// Receive a notification whenever vehicle data is updated on the page (or a new page is loaded).
202202
API.subscribe('vehicle-data-updated-v1', function(ev) {

source/includes/_requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ When you begin development of your script, it's easy to test on any Dealer.com s
1818

1919
```javascript
2020
(function(WIAPI) {
21-
var API = new WIAPI('test-integration');
21+
var API = new WIAPI('test-integration'); // Note: Replace 'test-integration' with your actual integration identifier.
2222
API.test('https://www.yourdomain.com/your-javascript-file.js');
2323
})(window.DDC.API);
2424
```

0 commit comments

Comments
 (0)