Skip to content

Commit

Permalink
fix alex's struggles with the correct way to use "it's" vs "its"
Browse files Browse the repository at this point in the history
  • Loading branch information
dochne committed Sep 19, 2016
1 parent 04ed566 commit 4122e21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cookieconsent.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
// -edgeless
// -classic
// use your own style name and use `.cc-theme-STYLENAME` class in CSS to edit .
// Note: style "wire" is used for the configurator, but has no CSS styles of it's own, only palette is used.
// Note: style "wire" is used for the configurator, but has no CSS styles of its own, only palette is used.
theme: 'block',

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

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

window.cookieconsent = cc;

}(window.cookieconsent || {}));
}(window.cookieconsent || {}));

2 comments on commit 4122e21

@alexmorleyfinch
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In my defence, one of those wasn't mine :)

@piiupilt
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Obviously you've a bad influence on me.

Please sign in to comment.