Commit df73474c by Attiya Ishaque Committed by GitHub

Merge pull request #14645 from edx/aj/discussion-fixes

Discussion Selector fixes. 
parents 9351600c 9c0f72d5
......@@ -136,8 +136,8 @@
title = this.$('.js-post-title').val();
body = this.$('.js-post-body').find('.wmd-input').val();
group = this.$('.js-group-select option:selected').attr('value');
anonymous = false || this.$('.js-anon').is(':checked');
anonymousToPeers = false || this.$('.js-anon-peers').is(':checked');
anonymous = false || this.$('input[name=anonymous]').is(':checked');
anonymousToPeers = false || this.$('input[name=anonymous_to_peers]').is(':checked');
follow = false || this.$('input[name=follow]').is(':checked');
topicId = this.isTabMode() ? this.topicView.getCurrentTopicId() : this.topicId;
url = DiscussionUtil.urlFor('create_thread', topicId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment