|
@@ -83,7 +83,7 @@ EventQueue.prototype.add = function(the_event) {
|
|
|
};
|
|
|
|
|
|
EventQueue.prototype.remove = function(event_id) {
|
|
|
- this.event_list = this.event_list.filter(function(el) {objectId(el) != event_id}).sort()
|
|
|
+ this.event_list = this.event_list.filter(function(el) {return objectId(el) != event_id;}).sort()
|
|
|
}
|
|
|
|
|
|
EventQueue.prototype.pop = function() {
|