Browse Source

Fixed error callback when room data could not be loaded.

pull/3/head
Simon Eisenmann 12 years ago
parent
commit
b70c61fdc2
  1. 4
      static/js/controllers/roomchangecontroller.js

4
static/js/controllers/roomchangecontroller.js

@ -42,8 +42,8 @@ define([], function() { @@ -42,8 +42,8 @@ define([], function() {
cb(data);
}).
error(function() {
console.log("Failed to retrieve room link", arguments);
cb(data);
console.error("Failed to retrieve room link.");
cb({});
});
};

Loading…
Cancel
Save