Browse Source

VideoWaiter: Only return relevant stuff

pull/415/head
Leon Klingele 9 years ago
parent
commit
2d2eae895c
No known key found for this signature in database
GPG Key ID: 83AEC0FEBAA5D483
  1. 4
      static/js/services/videowaiter.js

4
static/js/services/videowaiter.js

@ -93,7 +93,9 @@ define(["underscore"], function(_) {
_.defer(function() { _.defer(function() {
waiter.start(); waiter.start();
}); });
return waiter; return {
stop: waiter.stop,
};
} }
} }

Loading…
Cancel
Save