mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Merge branch 'master' of github.com:jonobr1/gui-dat
This commit is contained in:
commit
4f1fa0411b
8
gui.js
8
gui.js
@ -218,7 +218,13 @@ var GUI = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.unlistenTo = function(controller) {
|
this.unlistenTo = function(controller) {
|
||||||
// TODO
|
// TODO: test this
|
||||||
|
for(var i = 0; i < listening.length; i++) {
|
||||||
|
if(listening[i] == controller) listening.splice(i, 1);
|
||||||
|
}
|
||||||
|
if(listening.length <= 0) {
|
||||||
|
clearInterval(listenInterval);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.listen = function(whoToListenTo) {
|
this.listen = function(whoToListenTo) {
|
||||||
|
Loading…
Reference in New Issue
Block a user