mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Merge pull request #56 from upopple/master
Fix remove method to use splice instead of slice
This commit is contained in:
commit
fc6ec04c48
@ -544,7 +544,7 @@ define([
|
||||
|
||||
// TODO listening?
|
||||
this.__ul.removeChild(controller.__li);
|
||||
this.__controllers.slice(this.__controllers.indexOf(controller), 1);
|
||||
this.__controllers.splice(this.__controllers.indexOf(controller), 1);
|
||||
var _this = this;
|
||||
common.defer(function() {
|
||||
_this.onResize();
|
||||
|
Loading…
Reference in New Issue
Block a user