Skip to content

Commit 4122e21

Browse files
authored
fix alex's struggles with the correct way to use "it's" vs "its"
1 parent 04ed566 commit 4122e21

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cookieconsent.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
// -edgeless
278278
// -classic
279279
// use your own style name and use `.cc-theme-STYLENAME` class in CSS to edit .
280-
// Note: style "wire" is used for the configurator, but has no CSS styles of it's own, only palette is used.
280+
// Note: style "wire" is used for the configurator, but has no CSS styles of its own, only palette is used.
281281
theme: 'block',
282282

283283
// The popup is `fixed` by default, but if you want it to be static (inline with the page content), set this to false
@@ -501,7 +501,7 @@
501501
// This is because we are waiting for a "browser redraw" before we remove the 'cc-invisible' class.
502502
// If the class is remvoed before a redraw could happen, then the fadeIn effect WILL NOT work, and
503503
// the popup will appear from nothing. Therefore we MUST allow enough time for the browser to do
504-
// it's thing. The actually difference between using 0 and 20 in a set timeout is neglegible anyway
504+
// its thing. The actually difference between using 0 and 20 in a set timeout is neglegible anyway
505505
this.openingTimeout = setTimeout(afterFadeIn.bind(this, el), fadeInTimeout);
506506
}
507507
};
@@ -1217,7 +1217,7 @@
12171217
};
12181218

12191219
// The service request has run (and possibly has a `responseText`) [no `responseText` if `isScript`]
1220-
// We need to run it's callback which determines if its successful or not
1220+
// We need to run its callback which determines if its successful or not
12211221
// `complete` is called on success or failure
12221222
Location.prototype.runServiceCallback = function(complete, service, responseText) {
12231223
var self = this;
@@ -1488,4 +1488,4 @@
14881488

14891489
window.cookieconsent = cc;
14901490

1491-
}(window.cookieconsent || {}));
1491+
}(window.cookieconsent || {}));

0 commit comments

Comments
 (0)