Convert all tabs to spaces in tests for issue #37

This commit is contained in:
codedread
2018-05-17 21:12:27 -07:00
parent 81c11b2ce0
commit 8b7b2d89da
17 changed files with 3555 additions and 3555 deletions

View File

@@ -1,12 +1,12 @@
/* eslint-disable no-var */
var iframes = document.getElementsByTagName('iframe');
for (var i = 0, len = iframes.length; i < len; ++i) {
var f = iframes[i];
(function (f) {
f.addEventListener('load', function () {
f.contentWindow.QUnit.done = function () {
f.style.height = (f.contentDocument.body.scrollHeight + 20) + 'px';
};
});
})(f);
var f = iframes[i];
(function (f) {
f.addEventListener('load', function () {
f.contentWindow.QUnit.done = function () {
f.style.height = (f.contentDocument.body.scrollHeight + 20) + 'px';
};
});
})(f);
}