From f3059761830a0716504b04d25a4045c2f4ef4402 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 1 Aug 2021 12:52:42 +0200 Subject: style: fix typos discovered by codespell (#1197) python3 -m pip install codespell codespell --ignore-words-list="ba,cant,datas,hart,linke,ned,nin,overthere,upto" --skip="*.js" * Fix typos discovered by codespell * datas * intgers ==> integers --- coverage/htmlfiles/jquery.isonscreen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/htmlfiles/jquery.isonscreen.js') diff --git a/coverage/htmlfiles/jquery.isonscreen.js b/coverage/htmlfiles/jquery.isonscreen.js index 0182ebd2..28fb99bc 100644 --- a/coverage/htmlfiles/jquery.isonscreen.js +++ b/coverage/htmlfiles/jquery.isonscreen.js @@ -8,7 +8,7 @@ (function($) { jQuery.extend({ isOnScreen: function(box, container) { - //ensure numbers come in as intgers (not strings) and remove 'px' is it's there + //ensure numbers come in as integers (not strings) and remove 'px' is it's there for(var i in box){box[i] = parseFloat(box[i])}; for(var i in container){container[i] = parseFloat(container[i])}; -- cgit v1.2.1