X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=resources%2Fjquery%2Fjquery.qunit.completenessTest.js;h=20e6678e94a4e106e1a13867b9fefe65a48dda86;hb=9f1bca77eb6b71576ef21682d10804a0a00e7929;hp=d54e66c2a5014980aeb19bd7923ee842976c4856;hpb=ad3fe84aea912e89dc857439317a26e386ac0912;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/jquery/jquery.qunit.completenessTest.js b/resources/jquery/jquery.qunit.completenessTest.js index d54e66c2a5..20e6678e94 100644 --- a/resources/jquery/jquery.qunit.completenessTest.js +++ b/resources/jquery/jquery.qunit.completenessTest.js @@ -12,10 +12,8 @@ * * @author Timo Tijhof, 2011-2012 */ -/*global jQuery, QUnit */ -/*jshint eqeqeq:false, eqnull:false, forin:false */ ( function ( $ ) { - "use strict"; + 'use strict'; var util, hasOwn = Object.prototype.hasOwnProperty, @@ -96,7 +94,7 @@ * other constructor. Otherwise "missingTests" will include all methods that * were not called from that instance. */ - var CompletenessTest = function ( masterVariable, ignoreFn ) { + function CompletenessTest( masterVariable, ignoreFn ) { // Keep track in these objects. Keyed by strings with the // method names (ie. 'my.foo', 'my.bar', etc.) values are boolean true. @@ -199,7 +197,7 @@ }); return this; - }; + } /* Static members */ CompletenessTest.ACTION_INJECT = 500;