From: Stephen Kao Date: Fri, 2 Jan 2015 21:12:49 +0000 (-0500) Subject: Renaming local jQuery variable in requestAnimationFrame polyfill X-Git-Tag: v5.5.1~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6168%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Renaming local jQuery variable in requestAnimationFrame polyfill --- diff --git a/js/foundation/foundation.js b/js/foundation/foundation.js index 36c751b0b..0c185a6b3 100644 --- a/js/foundation/foundation.js +++ b/js/foundation/foundation.js @@ -201,7 +201,7 @@ * Licensed under the MIT license. */ - (function($) { + (function(jQuery) { // requestAnimationFrame polyfill adapted from Erik Möller // fixes from Paul Irish and Tino Zijdel @@ -267,7 +267,7 @@ } - }( jQuery )); + }( $ )); function removeQuotes (string) {