From 76c80858c315b8507c71388c59c9359ae1a433e2 Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Sat, 23 Dec 2017 11:48:35 -0500 Subject: [PATCH] Add JSDoc for .removeFolder(). --- src/dat/gui/GUI.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/dat/gui/GUI.js b/src/dat/gui/GUI.js index b7f290a..801c6c7 100644 --- a/src/dat/gui/GUI.js +++ b/src/dat/gui/GUI.js @@ -628,6 +628,11 @@ common.extend( return gui; }, + /** + * Removes a subfolder GUI instance. + * {dat.gui.GUI} folder The folder to remove. + * @instance + */ removeFolder: function(folder) { this.__ul.removeChild(folder.domElement.parentElement);