22 lines
736 B
JavaScript
22 lines
736 B
JavaScript
(function() {
|
|
Diaspora.Mobile.Conversations = {
|
|
initialize: function() {
|
|
new Diaspora.MarkdownEditor(".conversation-message-text");
|
|
if (Diaspora.Page !== "ConversationsNew") { return; }
|
|
$(document).on("ajax:success", "form#new-conversation", this.conversationCreateSuccess);
|
|
$(document).on("ajax:error", "form#new-conversation", this.conversationCreateError);
|
|
},
|
|
|
|
conversationCreateSuccess: function(evt, data) {
|
|
Diaspora.Mobile.changeLocation(Routes.conversation(data.id));
|
|
},
|
|
|
|
conversationCreateError: function(evt, response) {
|
|
Diaspora.Mobile.Alert.handleAjaxError(response);
|
|
}
|
|
};
|
|
})();
|
|
|
|
$(document).ready(function() {
|
|
Diaspora.Mobile.Conversations.initialize();
|
|
});
|