summaryrefslogtreecommitdiff
path: root/www/js/musicpools.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/musicpools.js')
-rw-r--r--www/js/musicpools.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/musicpools.js b/www/js/musicpools.js
index 28fcabb..fdf8a74 100644
--- a/www/js/musicpools.js
+++ b/www/js/musicpools.js
@@ -27,13 +27,13 @@ var Rivendell = Rivendell || {};
var musicpoolsView = null;
function musicpools_init() {
- var musicpools = new Rivendell.GroupList(rivendell);
+ var musicpools = new Rivendell.GroupList();
musicpoolsView = new Rivendell.MusicpoolsView(musicpools);
}
function musicpools_cleanup() {
musicpoolsView = null;
- rivendell = null;
+ rdxport = null;
}
Rivendell.MusicpoolsView = function(model) {
@@ -231,7 +231,7 @@ Rivendell.MusicpoolCartView.prototype.delete = function() {
this.$el.find('td:last').html(this.$spinner);
var self = this;
- rivendell.removeCart(this.model.number, function() {
+ rdxport.removeCart(this.model.number, function() {
self.model.group.removeCart(self.model);
self.$el.remove();
});