summaryrefslogtreecommitdiff
path: root/www/js/rdxport.rh.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/rdxport.rh.js')
-rw-r--r--www/js/rdxport.rh.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/rdxport.rh.js b/www/js/rdxport.rh.js
index 3c1bdfe..3c949ac 100644
--- a/www/js/rdxport.rh.js
+++ b/www/js/rdxport.rh.js
@@ -87,7 +87,7 @@ Rivendell.GroupList.prototype.fetch = function(type) {
this.groups = [];
var self = this;
- this.rivendell.listDropboxes(type, function(groupsXml, status, req) {
+ rdxport.listDropboxes(type, function(groupsXml, status, req) {
var dbs = $('dropboxList', groupsXml).children();
dbs.each(function(index, groupXml) {
var group = null;
@@ -123,7 +123,7 @@ Rivendell.Musicgrid.prototype.fetch = function() {
this.clocks = [];
var self = this;
- rivendell.getMusicgrid(function(gridXml, status, req) {
+ rdxport.getMusicgrid(function(gridXml, status, req) {
var dbs = $('grid', gridXml).children();
dbs.each(function(index, clockXml) {
self.clocks.push(new Rivendell.MusicgridClock(clockXml));