From: Michał Gołębiowski Date: Mon, 11 Nov 2013 00:53:23 +0000 (+0100) Subject: No ticket. Remove the unnecessary guard in addGetHookIf. Close gh-1426. X-Git-Tag: 2.1.0-beta2~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F1426%2Fhead;p=jquery.git No ticket. Remove the unnecessary guard in addGetHookIf. Close gh-1426. In 1.x if the support test executes before doc ready, it may not be able to return a result yet. In such a case, we protect ourselves from future breakages, allowing only for the ones before doc ready. Since in 2.x lazy support tests attach test elements to docElem, not body, such a guard is unnecessary. --- diff --git a/src/css/addGetHookIf.js b/src/css/addGetHookIf.js index 7efcbc860..81d694cb0 100644 --- a/src/css/addGetHookIf.js +++ b/src/css/addGetHookIf.js @@ -4,15 +4,7 @@ function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { - var condition = conditionFn(); - - if ( condition == null ) { - // The test was not ready at this point; screw the hook this time - // but check again when needed next time. - return; - } - - if ( condition ) { + if ( conditionFn() ) { // Hook not needed (or it's not possible to use it due to missing dependency), // remove it. // Since there are no other hooks for marginRight, remove the whole object.