From: Kevin Ball Date: Tue, 1 Nov 2016 16:53:41 +0000 (-0700) Subject: Fix typo in reveal appendTo pr X-Git-Tag: v6.3-rc1~40^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5062d1061c03f6dd6a47a63861ccdf84d8a66c8;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix typo in reveal appendTo pr --- diff --git a/js/foundation.reveal.js b/js/foundation.reveal.js index 08366cfb2..983289d81 100644 --- a/js/foundation.reveal.js +++ b/js/foundation.reveal.js @@ -85,7 +85,7 @@ class Reveal { _makeOverlay(id) { var $overlay = $('
') .addClass('reveal-overlay') - .appendTo('this.options.appendTo'); + .appendTo(this.options.appendTo); return $overlay; } @@ -567,11 +567,11 @@ Reveal.defaults = { */ deepLink: false, /** - * Allows the modal to append to custom div. + * Allows the modal to append to custom div. * @option * @example false */ - appendTo: "body" + appendTo: "body" };