Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 991118 - Navigating back ends ongoing call #16

Merged
merged 1 commit into from Apr 18, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion browser/components/loop/content/js/conversation.js
Expand Up @@ -124,7 +124,7 @@ loop.conversation = (function(OT, mozL10n) {
*/
function init() {
router = new ConversationRouter({
conversation: new loop.shared.models.ConversationModel(),
conversation: new loop.shared.models.ConversationModel({}, {sdk: OT}),
notifier: new sharedViews.NotificationListView({el: "#messages"})
});
Backbone.history.start();
Expand Down
Expand Up @@ -30,7 +30,7 @@ describe("loop.conversation", function() {
var conversation;

beforeEach(function() {
conversation = new loop.shared.models.ConversationModel();
conversation = new loop.shared.models.ConversationModel({}, {sdk: {}});
});

describe("Routes", function() {
Expand Down