Check in map of science's comparison view for 1.4 release testing

Remaining works:
- support csv download for sub-entity
- show sub-entity mapping results
This commit is contained in:
kongchinhua 2011-11-07 05:34:58 +00:00
parent 60a87403d1
commit be65655c7e
14 changed files with 895 additions and 316 deletions

View file

@ -50,7 +50,11 @@ var Marker = Class.extend({
this.handlers = handlers;
},
unregisterEvents : function() {
removeListeners(this.handlers);
this.handlers = null;
if (this.handlers) {
$.each(this.handlers, function(i, handler) {
removeListener(handler);
});
this.handlers = null;
}
}
});