From 0152a840796d7cd5dc25d71a3f79d6e6f841469d Mon Sep 17 00:00:00 2001 From: Stephen Kao Date: Fri, 2 Jan 2015 16:12:49 -0500 Subject: [PATCH] Renaming local jQuery variable in requestAnimationFrame polyfill --- js/foundation/foundation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.47.2