We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20c1f28 commit 422777dCopy full SHA for 422777d
examples/assets/library/iframe-content.js
@@ -545,16 +545,16 @@
545
}
546
547
function isSizeChangeDetected(){
548
- function checkTolarance(a,b){
+ function checkTolerance(a,b){
549
var retVal = Math.abs(a-b) <= tolerance;
550
return !retVal;
551
552
553
currentHeight = (undefined !== customHeight) ? customHeight : getHeight[heightCalcMode]();
554
currentWidth = (undefined !== customWidth ) ? customWidth : getWidth();
555
556
- return checkTolarance(height,currentHeight) ||
557
- (calculateWidth && checkTolarance(width,currentWidth));
+ return checkTolerance(height,currentHeight) ||
+ (calculateWidth && checkTolerance(width,currentWidth));
558
559
560
function isForceResizableEvent(){
0 commit comments