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:
Diffstat (limited to 'plugins/CoreHome/javascripts/dataTable.js')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index 073781f369..d786f880d4 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -639,7 +639,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
var normalOverlapBecauseTableIsFullWidth = showScrollbarIfMoreThanThisPxOverlap || 51;
if (tableWidth > widthToCheckElementIsActuallyThere && dataTableWidth > widthToCheckElementIsActuallyThere
&& (dataTableWidth - tableWidth) > normalOverlapBecauseTableIsFullWidth) {
- // when after adjusting the columns the widget/report is sitll wider than the actual dataTable, we need
+ // when after adjusting the columns the widget/report is still wider than the actual dataTable, we need
// to make it scrollable otherwise reports overlap each other
$domNodeToSetOverflow.css('overflow-y', 'scroll');
@@ -1494,7 +1494,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
}
});
- // higlight all columns on hover
+ // highlight all columns on hover
$(domElem).on('mouseenter', 'td', function (e) {
e.stopPropagation();
var $this = $(e.target);