Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2016-04-11 02:29:06 +0300
committermattab <matthieu.aubry@gmail.com>2016-04-11 02:29:06 +0300
commit9aec9b321e7b37eff843934feca3d4347723987c (patch)
tree6ea8451842563a9a97e8a3e86294ff3e5da5cd6c
parentd2f83c70ed5bff6b9be7cf98a59bdc124dbe3d00 (diff)
Fix typo "correctly"
-rw-r--r--libs/jqplot/jqplot.core.js2
-rw-r--r--tests/UI/specs/OptOutForm_spec.js2
-rw-r--r--tests/UI/specs/ReportExporting_spec.js4
3 files changed, 4 insertions, 4 deletions
diff --git a/libs/jqplot/jqplot.core.js b/libs/jqplot/jqplot.core.js
index 0c2d857bdd..8b6ca680f6 100644
--- a/libs/jqplot/jqplot.core.js
+++ b/libs/jqplot/jqplot.core.js
@@ -1804,7 +1804,7 @@
// prop: drawIfHidden
// True to execute the draw method even if the plot target is hidden.
// Generally, this should be false. Most plot elements will not be sized/
- // positioned correclty if renderered into a hidden container. To render into
+ // positioned correctly if renderered into a hidden container. To render into
// a hidden container, call the replot method when the container is shown.
this.drawIfHidden = false;
this.eventCanvas = new $.jqplot.GenericCanvas();
diff --git a/tests/UI/specs/OptOutForm_spec.js b/tests/UI/specs/OptOutForm_spec.js
index c904f5b5c9..704f8f5609 100644
--- a/tests/UI/specs/OptOutForm_spec.js
+++ b/tests/UI/specs/OptOutForm_spec.js
@@ -48,7 +48,7 @@ describe("OptOutForm", function () {
}, done);
});
- it("should correclty set opt-out cookie on safari", function (done) {
+ it("should correctly set opt-out cookie on safari", function (done) {
expect.screenshot('opted-out').to.be.captureSelector('safari-opted-out', 'iframe#optOutIframe', function (page) {
page.evaluate(function () {
$('iframe#optOutIframe').contents().find('input#trackVisits').click();
diff --git a/tests/UI/specs/ReportExporting_spec.js b/tests/UI/specs/ReportExporting_spec.js
index fc223edfcc..2fc2295a12 100644
--- a/tests/UI/specs/ReportExporting_spec.js
+++ b/tests/UI/specs/ReportExporting_spec.js
@@ -29,7 +29,7 @@ describe("ReportExporting", function () {
}
function evolutionReportTest(format) {
- it("should export an evolution graph report correclty when the " + format + " export link is clicked", function (done) {
+ it("should export an evolution graph report correctly when the " + format + " export link is clicked", function (done) {
expect.file('VisitsSummary.get_exported.' + format.toLowerCase() + '.txt').to.be.pageContents(function (page) {
if (page.getCurrentUrl() != visitsSummaryGetUrl) {
page.load(visitsSummaryGetUrl);
@@ -43,7 +43,7 @@ describe("ReportExporting", function () {
}
function rowEvolutionReportTest(format) {
- it("should export an row evolution graph report correclty when the " + format + " export link is clicked", function (done) {
+ it("should export an row evolution graph report correctly when the " + format + " export link is clicked", function (done) {
expect.file('RowEvolution_exported.' + format.toLowerCase() + '.txt').to.be.pageContents(function (page) {
if (!page.getCurrentUrl() || page.getCurrentUrl().indexOf('popover') == -1) {
page.load(referrersGetWebsitesUrl);