From: peter rosanelli Date: Wed, 3 Jun 2020 20:58:03 +0000 (-0400) Subject: fixes example call to throttle X-Git-Tag: v6.7.1~70^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12088%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fixes example call to throttle --- diff --git a/docs/pages/javascript-utilities.md b/docs/pages/javascript-utilities.md index ea7b6463e..83bcc5975 100644 --- a/docs/pages/javascript-utilities.md +++ b/docs/pages/javascript-utilities.md @@ -202,7 +202,7 @@ $(window).on('resize', function(e){ ### With Delay ```js // Throttled resize function -$(window).on('resize', Foundation.utils.throttle(function(e){ +$(window).on('resize', Foundation.util.throttle(function(e){ // Do responsive stuff }, 300)); ```